summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--modules/experimental/config.m42
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index d08149f02a..48ab0df525 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
Changes with Apache 2.0.30-dev
+ *) Fix a typo in mod_deflate's m4 config section.
+ [albert chin (china@thewrittenword.com)]
+
*) Fix a couple of mod_proxy problems forwarding HTTP connections
and handling CONNECT:
(1) PR #9190 Proxy failed to connect to IPv6 hosts.
diff --git a/modules/experimental/config.m4 b/modules/experimental/config.m4
index a4700688c8..9194444872 100644
--- a/modules/experimental/config.m4
+++ b/modules/experimental/config.m4
@@ -59,7 +59,7 @@ APACHE_MODULE(deflate, Deflate transfer encoding support, , , no, [
CPPFLAGS="$CPPFLAGS -I${ap_zlib_base}/include"
APR_ADDTO(LDFLAGS, [-L${ap_zlib_base}/lib])
if test "x$ap_platform_runtime_link_flag" != "x"; then
- APR_ADDTO(LDFLAGS, [$ap_platform_runtime_link_flag${ap_zlib_Base}/lib])
+ APR_ADDTO(LDFLAGS, [$ap_platform_runtime_link_flag${ap_zlib_base}/lib])
fi
fi
APR_ADDTO(LIBS, [-lz])