aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ef9865456..6697db2c6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -724,9 +724,12 @@ gl_LIBUNISTRING
724if test $HAVE_LIBUNISTRING != yes; then 724if test $HAVE_LIBUNISTRING != yes; then
725 AC_MSG_ERROR([GNUnet requires libunistring]) 725 AC_MSG_ERROR([GNUnet requires libunistring])
726fi 726fi
727if test "$gl_libunistring_hexversion" -le 2305; then 727# under emscripten, $gl_libunistring_hexversion is undefined
728if test "$taler_only" != yes; then
729if test "x$gl_libunistring_hexversion" = "x" || test "$gl_libunistring_hexversion" -le 2305; then
728 AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1]) 730 AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])
729fi 731fi
732fi
730AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed])) 733AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed]))
731 734
732# restore LIBS 735# restore LIBS