aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-13 02:05:37 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-13 02:05:37 +0000
commit4c38f15697b338a770b3d1d499b45b2f009d6bf5 (patch)
tree75a3c31faf4aa2f26be9a3cc686b6bc7e259372e /configure.ac
parent8ab2e3d3a564b5b9f99e8c6fdd4da4311c14c897 (diff)
downloadgnunet-4c38f15697b338a770b3d1d499b45b2f009d6bf5.tar.gz
gnunet-4c38f15697b338a770b3d1d499b45b2f009d6bf5.zip
fix configure.ac for emscripten
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