summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8ba5f70d..7d555fa6 100644
--- a/NEWS
+++ b/NEWS
@@ -4,7 +4,7 @@ NEWS
====
- 1.4.31 -
- * [ssl] fix segfault in counting renegotiations for openssl versions without TLSEXT/SNI
+ * [ssl] fix segfault in counting renegotiations for openssl versions without TLSEXT/SNI (thx carpii for reporting)
* Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
* [mod_compress] fix handling if etags are disabled but cache-dir is set - may lead to double response
* disable mmap by default (fixes #2391)
@@ -17,6 +17,7 @@ NEWS
* Detect multiple -f options: show error message instead of assert (fixes #2416)
* [mod_extforward] Support ipv6 addresses (fixes #1889)
* [mod_redirect] Support url.redirect-code option (fixes #2247)
+ * Fix --enable-mmap handling in configure.ac
- 1.4.30 - 2011-12-18
* Always use our 'own' md5 implementation, fixes linking issues on MacOS (fixes #2331)
diff --git a/configure.ac b/configure.ac
index 5d33e87d..04f1eaf0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -580,7 +580,7 @@ AC_ARG_ENABLE(mmap,
*) AC_MSG_ERROR(bad value ${enableval} for --enable-mmap) ;;
esac],[mmap=false])
-if teest x$mmap = xtrue; then
+if test x$mmap = xtrue; then
AC_DEFINE(ENABLE_MMAP, [1], [Use mmap if available])
fi