gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r38155 - gnunet


From: gnunet
Subject: [GNUnet-SVN] r38155 - gnunet
Date: Thu, 13 Oct 2016 04:05:38 +0200

Author: dold
Date: 2016-10-13 04:05:37 +0200 (Thu, 13 Oct 2016)
New Revision: 38155

Modified:
   gnunet/configure.ac
Log:
fix configure.ac for emscripten

Modified: gnunet/configure.ac
===================================================================
--- gnunet/configure.ac 2016-10-13 01:55:08 UTC (rev 38154)
+++ gnunet/configure.ac 2016-10-13 02:05:37 UTC (rev 38155)
@@ -724,9 +724,12 @@
 if test $HAVE_LIBUNISTRING != yes; then
  AC_MSG_ERROR([GNUnet requires libunistring])
 fi
-if test "$gl_libunistring_hexversion" -le 2305; then
+# under emscripten, $gl_libunistring_hexversion is undefined
+if test "$taler_only" != yes; then
+if test "x$gl_libunistring_hexversion" = "x" || test 
"$gl_libunistring_hexversion" -le 2305; then
  AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])
 fi
+fi
 AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h 
(from libunistring) to be installed]))
 
 # restore LIBS




reply via email to

[Prev in Thread] Current Thread [Next in Thread]