diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-03-23 15:12:54 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-03-23 15:12:54 +0000 |
commit | 2283e471f8bb1c8009dd310361c44e38fcbd2bc0 (patch) | |
tree | 67d402408c2d3bd00b26cc53de6001d1224f493a /ext/soap/php_encoding.c | |
parent | 3e6fce84bb483775643f92cde80d96c0c96381ce (diff) | |
download | php-git-2283e471f8bb1c8009dd310361c44e38fcbd2bc0.tar.gz |
windows compatibility fix
Diffstat (limited to 'ext/soap/php_encoding.c')
-rw-r--r-- | ext/soap/php_encoding.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index 53f2825ac5..eda32813e3 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -23,6 +23,7 @@ #include "php_soap.h" #include "ext/libxml/php_libxml.h" +#include <libxml/parserInternals.h> #include "zend_strtod.h" /* zval type decode */ @@ -2580,8 +2581,6 @@ static zval *to_zval_any(encodeTypePtr type, xmlNodePtr data) return ret; } -extern const xmlChar xmlStringTextNoenc[]; - static xmlNodePtr to_xml_any(encodeTypePtr type, zval *data, int style, xmlNodePtr parent) { xmlNodePtr ret; |