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/xmlrpc/libxmlrpc/xmlrpc.c | |
parent | 24eb2bfabc0b2ffa6a47a32250d869a6c62271c4 (diff) | |
download | php-git-a8b29a2e8f7bfb69b02af777cfcddbc98b24196c.tar.gz |
- Made it possible to build ext/xmlrpc with libxml2
Diffstat (limited to 'ext/xmlrpc/libxmlrpc/xmlrpc.c')
-rw-r--r-- | ext/xmlrpc/libxmlrpc/xmlrpc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/xmlrpc/libxmlrpc/xmlrpc.c b/ext/xmlrpc/libxmlrpc/xmlrpc.c index 1fbb4a7ec3..90a8b92109 100644 --- a/ext/xmlrpc/libxmlrpc/xmlrpc.c +++ b/ext/xmlrpc/libxmlrpc/xmlrpc.c @@ -43,6 +43,9 @@ static const char rcsid[] = "#(@) $Id$"; * 9/1999 - 10/2000 * HISTORY * $Log$ + * Revision 1.6 2004/04/27 17:33:59 iliaa + * Removed C++ style comments. + * * Revision 1.5 2003/12/16 21:00:21 sniper * Fix some compile warnings (patch by Joe Orton) * @@ -129,7 +132,7 @@ static const char rcsid[] = "#(@) $Id$"; #include "queue.h" #include "xmlrpc.h" -#include "expat.h" +#include "ext/xml/expat_compat.h" #include "base64.h" #include "xml_to_xmlrpc.h" |