diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2016-08-16 12:17:55 +0000 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2016-08-16 12:17:55 +0000 |
commit | c03f19520ac1706134ba00ad28540e6958275a15 (patch) | |
tree | 575f8aa7950b4eb7a37efe884ac2dc16f18b92af | |
parent | 071c4bfa974d30e8a67ed4e1ffb27993c4c4797f (diff) | |
download | libmicrohttpd-c03f19520ac1706134ba00ad28540e6958275a15.tar.gz libmicrohttpd-c03f19520ac1706134ba00ad28540e6958275a15.zip |
configure.ac: minor fix for non-bash shells
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ | |||
1 | Tue Aug 16 15:14:30 MSK 2016 | ||
2 | Minor improvement for monotonic clock. | ||
3 | Minor configure fix for non-bash shells. -EG | ||
4 | |||
1 | Mon Aug 15 13:06:52 CEST 2016 | 5 | Mon Aug 15 13:06:52 CEST 2016 |
2 | Fixed possible crash due to write to read-only region of | 6 | Fixed possible crash due to write to read-only region of |
3 | memory given ill-formed HTTP request (write was otherwise | 7 | 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 | |||
1117 | ]) | 1117 | ]) |
1118 | fi | 1118 | fi |
1119 | 1119 | ||
1120 | if test "x$enable_bauth" != "xyes" -o \ | 1120 | if test "x$enable_bauth" != "xyes" || \ |
1121 | "x$enable_dauth" != "xyes" -o \ | 1121 | test "x$enable_dauth" != "xyes" || \ |
1122 | "x$enable_postprocessor" != "xyes" | 1122 | test "x$enable_postprocessor" != "xyes" |
1123 | then | 1123 | then |
1124 | 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.]) | 1124 | 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.]) |
1125 | fi | 1125 | fi |