]> granicus.if.org Git - apache/commitdiff
mod_xml2enc/mod_proxy_html drop
authorNick Kew <niq@apache.org>
Wed, 26 Oct 2011 23:47:18 +0000 (23:47 +0000)
committerNick Kew <niq@apache.org>
Wed, 26 Oct 2011 23:47:18 +0000 (23:47 +0000)
Part 3: Introduce them to autoconf
I expect this'll want further attention, but not tonight

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1189540 13f79535-47bb-0310-9956-ffa450edef68

modules/filters/config.m4

index f5fa1cdead555155a6ab3b6068825799ae891efb..f06415390a0b747f79b48ed22e30dfc4dc8e4e5f 100644 (file)
@@ -89,6 +89,30 @@ APACHE_MODULE(deflate, Deflate transfer encoding support, , , most, [
   fi
 ])
 
+AC_DEFUN(FIND_LIBXML2, [
+  AC_ARG_WITH(libxml2, 
+    [APACHE_HELP_STRING(--with-libxml2,location for libxml2)],
+    [test_paths="${with_libxml2}"],
+    [test_paths="/usr/include/libxml2 /usr/local/include/libxml2 /usr/include /usr/local/include"]
+  )
+  AC_MSG_CHECKING(Checking for libxml2)
+  xml2_path=""
+  for x in ${test_paths}; do
+      if test -e "${x}/libxml/parser.h"; then
+        xml2_path="${x}"
+        break
+      fi
+  done
+  if test -n ${xml2_path}; then
+    APR_ADDTO(CFLAGS, [-I${xml2_path}])
+  else
+    AC_MSG_ERROR([libxml2 headers not found!])
+  fi
+])
+
+APACHE_MODULE(xml2enc, i18n support for markup filters, , , , FIND_LIBXML2)
+APACHE_MODULE(proxy_html, Fix HTML Links in a Reverse Proxy, , , , FIND_LIBXML2)
+
 APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/$modpath_current])
 
 APACHE_MODPATH_FINISH