diff options
author | Sander Temme <sctemme@apache.org> | 2011-11-08 00:55:27 +0100 |
---|---|---|
committer | Sander Temme <sctemme@apache.org> | 2011-11-08 00:55:27 +0100 |
commit | 650b90f7f094eaf4de3850f6ca18317839986d72 (patch) | |
tree | 112c0b6ec73a50f118900becfb554b7c01fe8f3d /modules | |
parent | Remove ProxyHTMLLogVerbose in favor of trace loglevels (diff) | |
download | apache2-650b90f7f094eaf4de3850f6ca18317839986d72.tar.xz apache2-650b90f7f094eaf4de3850f6ca18317839986d72.zip |
Link the modules that use it against the XML library so the server will start.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199019 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/filters/config.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/filters/config.m4 b/modules/filters/config.m4 index 68c73eddd2..0a1e62a913 100644 --- a/modules/filters/config.m4 +++ b/modules/filters/config.m4 @@ -117,6 +117,7 @@ APACHE_MODULE(xml2enc, i18n support for markup filters, , , , [ FIND_LIBXML2 if test "$ac_cv_libxml2" = "yes" ; then APR_ADDTO(CFLAGS, [-I${XML2_INCLUDES}]) + APR_ADDTO(MOD_XML2ENC_LDADD, [-lxml2]) else enable_xml2enc=no fi @@ -125,6 +126,7 @@ APACHE_MODULE(proxy_html, Fix HTML Links in a Reverse Proxy, , , , [ FIND_LIBXML2 if test "$ac_cv_libxml2" = "yes" ; then APR_ADDTO(CFLAGS, [-I${XML2_INCLUDES}]) + APR_ADDTO(MOD_PROXY_HTML_LDADD, [-lxml2]) else enable_proxy_html=no fi |