aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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