From 8b6d4c43c9a8e0c60cc8666db71e03f584d812ba Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Fri, 8 Jul 2022 22:59:05 +0300 Subject: [PATCH 25/25] Add http.project This .projects defines default metaserver URL and default modpack list URL with http -protocol. This is meant as a temporary workaround for environments where https does not work. See osdn #45071 Signed-off-by: Marko Lindqvist --- bootstrap/Makefile.am | 1 + bootstrap/http.project | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 bootstrap/http.project diff --git a/bootstrap/Makefile.am b/bootstrap/Makefile.am index 47d63206cc..db254c75b4 100644 --- a/bootstrap/Makefile.am +++ b/bootstrap/Makefile.am @@ -6,6 +6,7 @@ ## It should also install it automatically when running autogen.sh. EXTRA_DIST = freeciv.project \ snapshot.project \ + http.project \ fcgui.in \ fcser.in \ fcruledit.in \ diff --git a/bootstrap/http.project b/bootstrap/http.project new file mode 100644 index 0000000000..7be9468b9f --- /dev/null +++ b/bootstrap/http.project @@ -0,0 +1,12 @@ +# Project file that still sets default metaserver and +# modpack list URL with http -protocol instead of https. +# +# To use, configure with: +# "--with-project-definition=/bootstrap/http.project" +# + +# Load freeciv defaults as the base to modify +. ${srcdir}/bootstrap/freeciv.project + +META_URL="http://meta.freeciv.org/metaserver.php" +MODPACK_LIST_URL="http://modpack.freeciv.org/3.0/modpack.list" -- 2.35.1