aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-13 01:55:08 +0000
committerFlorian Dold <florian.dold@gmail.com>2016-10-13 01:55:08 +0000
commit8ab2e3d3a564b5b9f99e8c6fdd4da4311c14c897 (patch)
treeef34adac41c401005c4d31f2f71030a2e1fab167 /configure.ac
parentb4ac24f09d494d9aae11a332f1ee6c23857f45a2 (diff)
downloadgnunet-8ab2e3d3a564b5b9f99e8c6fdd4da4311c14c897.tar.gz
gnunet-8ab2e3d3a564b5b9f99e8c6fdd4da4311c14c897.zip
quoting, since test breaks (under emscripten) when variable is empty string
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 50bc45594..ef9865456 100644
--- a/configure.ac
+++ b/configure.ac
@@ -724,7 +724,7 @@ 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 727if test "$gl_libunistring_hexversion" -le 2305; then
728 AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1]) 728 AC_MSG_ERROR([GNUnet requires libunistring >= 0.9.1.1])
729fi 729fi
730AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed])) 730AC_CHECK_HEADERS([unistr.h],,AC_MSG_ERROR([Compiling GNUnet requires unistr.h (from libunistring) to be installed]))