gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r37726 - libmicrohttpd


From: gnunet
Subject: [GNUnet-SVN] r37726 - libmicrohttpd
Date: Tue, 16 Aug 2016 14:17:56 +0200

Author: Karlson2k
Date: 2016-08-16 14:17:55 +0200 (Tue, 16 Aug 2016)
New Revision: 37726

Modified:
   libmicrohttpd/ChangeLog
   libmicrohttpd/configure.ac
Log:
configure.ac: minor fix for non-bash shells

Modified: libmicrohttpd/ChangeLog
===================================================================
--- libmicrohttpd/ChangeLog     2016-08-16 12:17:52 UTC (rev 37725)
+++ libmicrohttpd/ChangeLog     2016-08-16 12:17:55 UTC (rev 37726)
@@ -1,3 +1,7 @@
+Tue Aug 16 15:14:30 MSK 2016
+       Minor improvement for monotonic clock.
+       Minor configure fix for non-bash shells. -EG
+
 Mon Aug 15 13:06:52 CEST 2016
        Fixed possible crash due to write to read-only region of
        memory given ill-formed HTTP request (write was otherwise

Modified: libmicrohttpd/configure.ac
===================================================================
--- libmicrohttpd/configure.ac  2016-08-16 12:17:52 UTC (rev 37725)
+++ libmicrohttpd/configure.ac  2016-08-16 12:17:55 UTC (rev 37726)
@@ -1117,9 +1117,9 @@
 ])
 fi
 
-if test "x$enable_bauth" != "xyes" -o \
-        "x$enable_dauth" != "xyes" -o \
-        "x$enable_postprocessor" != "xyes"
+if test "x$enable_bauth" != "xyes" || \
+   test "x$enable_dauth" != "xyes" || \
+   test "x$enable_postprocessor" != "xyes"
 then
  AC_MSG_NOTICE([WARNING: This will be a custom build with missing symbols. Do 
NOT use this build in a distribution. Building with these kinds of configure 
options is only for custom builds for embedded systems.])
 fi




reply via email to

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