aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-03-11 02:48:18 +0100
committerChristian Grothoff <christian@grothoff.org>2019-03-11 02:48:40 +0100
commitf0ed8c15c4070c7fe1b79931ee4d327920c17ae7 (patch)
treef16ed5deb66b2f6f9dcf6c192cecf40baf5c7e4f
parent1b292596c1cbb211c22542607f6f5d15f2dc0465 (diff)
downloadgnunet-f0ed8c15c4070c7fe1b79931ee4d327920c17ae7.tar.gz
gnunet-f0ed8c15c4070c7fe1b79931ee4d327920c17ae7.zip
having a working libidn is no longer optional
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac3
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c33c6071b..125063ca5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
1Mon Mar 11 02:47:55 CET 2019
2 Make configure complain if no working libidn is detected. -CG
3
1Sat Mar 9 15:58:45 2019 +0100 4Sat Mar 9 15:58:45 2019 +0100
2 REST: Config option for address bind. Defaults to localhost. 5 REST: Config option for address bind. Defaults to localhost.
3 GNS: dns2gns/gns-proxy config option for address bind. Defaults to localhost. 6 GNS: dns2gns/gns-proxy config option for address bind. Defaults to localhost.
diff --git a/configure.ac b/configure.ac
index d858dca9c..440b4a5eb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -905,6 +905,9 @@ AS_IF([test x$working_libidn2 = x0],
905 * --with-libidn])])])]) 905 * --with-libidn])])])])
906AM_CONDITIONAL(HAVE_LIBIDN, test x$working_libidn1 = x1) 906AM_CONDITIONAL(HAVE_LIBIDN, test x$working_libidn1 = x1)
907 907
908AS_IF([test "$working_libidn1" = 0 -a "$working_libidn2" = 0],
909 [AC_MSG_ERROR([GNUnet requires libidn (or libidn2)])])
910
908AS_IF([test x$there_can_only_be_one = x0], 911AS_IF([test x$there_can_only_be_one = x0],
909 [AC_MSG_FAILURE([Missing dependencies: $MISSING_DEPS])]) 912 [AC_MSG_FAILURE([Missing dependencies: $MISSING_DEPS])])
910 913