summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-16 12:17:55 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-08-16 12:17:55 +0000
commitc03f19520ac1706134ba00ad28540e6958275a15 (patch)
tree575f8aa7950b4eb7a37efe884ac2dc16f18b92af
parent071c4bfa974d30e8a67ed4e1ffb27993c4c4797f (diff)
configure.ac: minor fix for non-bash shells
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f79b8137..78b2acd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/configure.ac b/configure.ac
index 1742d16f..f99da256 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1117,9 +1117,9 @@ else
])
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