diff options
author | Nick Kew <niq@apache.org> | 2011-03-25 12:42:53 +0000 |
---|---|---|
committer | Nick Kew <niq@apache.org> | 2011-03-25 12:42:53 +0000 |
commit | 886b9083bab5e915aa7f2f357bcc40229fc1ac58 (patch) | |
tree | d843108f6cba039c69ccaa7068f3e86e4787c053 /xml | |
parent | c958f1b7c7ba0516227047e0fde0888dc31842c3 (diff) | |
download | apr-886b9083bab5e915aa7f2f357bcc40229fc1ac58.tar.gz |
Support selection of libxml2 vs expat in autoconf build.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1085350 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'xml')
-rw-r--r-- | xml/apr_xml_expat.c | 3 | ||||
-rw-r--r-- | xml/apr_xml_libxml2.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/xml/apr_xml_expat.c b/xml/apr_xml_expat.c index 239ebe504..ed7571bdc 100644 --- a/xml/apr_xml_expat.c +++ b/xml/apr_xml_expat.c @@ -15,6 +15,8 @@ */ #include "apr.h" + +#if APU_USE_EXPAT #include "apr_xml.h" #if defined(HAVE_XMLPARSE_XMLPARSE_H) @@ -132,3 +134,4 @@ APR_DECLARE(apr_xml_parser *) apr_xml_parser_create_ex(apr_pool_t *pool, return parser; } +#endif diff --git a/xml/apr_xml_libxml2.c b/xml/apr_xml_libxml2.c index a765f2359..46f28546b 100644 --- a/xml/apr_xml_libxml2.c +++ b/xml/apr_xml_libxml2.c @@ -15,6 +15,8 @@ */ #include "apr.h" + +#if APU_USE_LIBXML2 #include "apr_xml.h" #include <libxml/parser.h> @@ -94,3 +96,4 @@ APR_DECLARE(apr_xml_parser *) apr_xml_parser_create_ex(apr_pool_t *pool, return parser; } +#endif |