diff options
author | Sebastian Bergmann <sebastian@php.net> | 2003-06-25 21:37:50 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2003-06-25 21:37:50 +0000 |
commit | 4434c8e0d66cbb615c1d8dc424ec04aeb06fd8b1 (patch) | |
tree | b840f04cc5b0a2f5a665a8560ffd6f50900b8dd5 /main/internal_functions_win32.c | |
parent | 75abafdfc32520f27cb8d01862671d3190e11e7f (diff) | |
download | php-git-4434c8e0d66cbb615c1d8dc424ec04aeb06fd8b1.tar.gz |
Add ext/dom and ext/simplexml to the Win32 default build. #Apart from a linker error when HAVE_SIMPLEXML=1 is set this already works. More research, after a good night's sleep, is required ;-)
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 35 |
1 files changed, 26 insertions, 9 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index e0f96a6dfc..8baedc7167 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -71,12 +71,6 @@ #if HAVE_SESSION #include "ext/session/php_session.h" #endif -#if HAVE_XML -#include "ext/xml/php_xml.h" -#endif -#if HAVE_XML && HAVE_WDDX -#include "ext/wddx/php_wddx.h" -#endif #if HAVE_MYSQL #include "ext/mysql/php_mysql.h" #endif @@ -89,6 +83,21 @@ #if HAVE_ZLIB #include "ext/zlib/php_zlib.h" #endif +#if HAVE_LIBXML +#if HAVE_DOM +#include "ext/dom/php_dom.h" +#endif +#if HAVE_SIMPLEXML +#include "ext/simplexml/php_simplexml.h" +#endif +#endif +#if HAVE_XML +#include "ext/xml/php_xml.h" +#endif +#if HAVE_XML && HAVE_WDDX +#include "ext/wddx/php_wddx.h" +#endif + /* }}} */ /* {{{ php_builtin_extensions[] @@ -125,15 +134,23 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_TOKENIZER ,phpext_tokenizer_ptr #endif +#if HAVE_ZLIB + ,phpext_zlib_ptr +#endif +#if HAVE_LIBXML +#if HAVE_DOM + ,phpext_dom_ptr +#endif +#if HAVE_SIMPLEXML + ,phpext_simplexml_ptr +#endif +#endif #if HAVE_XML ,phpext_xml_ptr #endif #if HAVE_XML && HAVE_WDDX ,phpext_wddx_ptr #endif -#if HAVE_ZLIB - ,phpext_zlib_ptr -#endif }; /* }}} */ |