summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2012-05-31 15:08:36 +0000
committerStefan Bühler <stbuehler@web.de>2012-05-31 15:08:36 +0000
commit100ed91f2d87b784e850688cc6f1c3ff62a67efd (patch)
tree208f4baca4255842d8e5cd1a35d8319e23692434
parent172eeebfaa6a5c2c3f4360ff7bbacaf29aeb71b6 (diff)
downloadlighttpd-git-100ed91f2d87b784e850688cc6f1c3ff62a67efd.tar.gz
Fix --enable-mmap handling in configure.aclighttpd-1.4.31
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2839 152afb58-edef-0310-8abb-c4023f1b3aa9
-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