diff options
author | Shane Caraveo <shane@php.net> | 2003-10-19 21:48:46 +0000 |
---|---|---|
committer | Shane Caraveo <shane@php.net> | 2003-10-19 21:48:46 +0000 |
commit | 399095e7a5c3cc6a288c137b290db04bc9ed17b8 (patch) | |
tree | 25d4539ce82617b650ea9e8a15a616c8600c5441 /main | |
parent | 3a6ff32e2b8ca21622f335802b94941d9f6453de (diff) | |
download | php-git-399095e7a5c3cc6a288c137b290db04bc9ed17b8.tar.gz |
Add libxml extension for common code that is needed to be shared between
various xml extensions. currently the only implemented support is the
addition of the streams support for libxml. One new function,
libxml_set_streams_context, which allows a streams context to bet set
prior to loading or writing documents. This works transparently with any
extension that uses libxml. All ini settings that effect streams will
also now effect the loading and writing of xml documents.
TODO: linux support, not sure if config.m4 will work right.
Diffstat (limited to 'main')
-rw-r--r-- | main/internal_functions_win32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 0c5393acd1..39e9efc179 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -81,6 +81,7 @@ #include "ext/zlib/php_zlib.h" #endif #if HAVE_LIBXML +#include "ext/libxml/php_libxml.h" #if HAVE_DOM #include "ext/dom/php_dom.h" #endif @@ -136,6 +137,7 @@ zend_module_entry *php_builtin_extensions[] = { ,phpext_zlib_ptr #endif #if HAVE_LIBXML + ,phpext_libxml_ptr #if HAVE_DOM ,phpext_dom_ptr #endif |