diff options
author | foobar <sniper@php.net> | 2005-03-26 03:13:58 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-03-26 03:13:58 +0000 |
commit | a8b29a2e8f7bfb69b02af777cfcddbc98b24196c (patch) | |
tree | 5ae5cc73d621db1e79cec524a7594d9af96a8335 /ext/xml/compat.c | |
parent | 24eb2bfabc0b2ffa6a47a32250d869a6c62271c4 (diff) | |
download | php-git-a8b29a2e8f7bfb69b02af777cfcddbc98b24196c.tar.gz |
- Made it possible to build ext/xmlrpc with libxml2
Diffstat (limited to 'ext/xml/compat.c')
-rw-r--r-- | ext/xml/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xml/compat.c b/ext/xml/compat.c index cac165094f..610363aa36 100644 --- a/ext/xml/compat.c +++ b/ext/xml/compat.c @@ -17,7 +17,7 @@ */ #include "php.h" -#if defined(HAVE_LIBXML) && defined(HAVE_XML) && !defined(HAVE_LIBEXPAT) +#if defined(HAVE_LIBXML) && (defined(HAVE_XML) || defined(HAVE_XMLRPC)) && !defined(HAVE_LIBEXPAT) #include "expat_compat.h" typedef struct _php_xml_ns { |