diff options
author | Sebastian Bergmann <sebastian@php.net> | 2003-05-24 08:03:38 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2003-05-24 08:03:38 +0000 |
commit | d1cb228bf1d1c79e197875a30a7c8e0b666154ac (patch) | |
tree | ba9779068a9679a8cb3bf515b07bd6dab3c6d7e2 /main/internal_functions_win32.c | |
parent | 07adb2e19f5c669c8f3fd68cbb90ab76c321171c (diff) | |
download | php-git-d1cb228bf1d1c79e197875a30a7c8e0b666154ac.tar.gz |
Get rid of references to expat in MSVC project files. For now this expects libxml2 (library and includes) in one of the MSVC default include/library directories. Right now it doesn't link, dunno why -- working on it.
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 69d8cab177..95be9f5c0b 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -77,10 +77,10 @@ #if HAVE_SESSION #include "ext/session/php_session.h" #endif -#if HAVE_LIBEXPAT +#if HAVE_XML #include "ext/xml/php_xml.h" #endif -#if HAVE_LIBEXPAT && HAVE_WDDX +#if HAVE_XML && HAVE_WDDX #include "ext/wddx/php_wddx.h" #endif #if HAVE_MYSQL @@ -137,10 +137,10 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_TOKENIZER ,phpext_tokenizer_ptr #endif -#if HAVE_LIBEXPAT +#if HAVE_XML ,phpext_xml_ptr #endif -#if HAVE_LIBEXPAT && HAVE_WDDX +#if HAVE_XML && HAVE_WDDX ,phpext_wddx_ptr #endif #if HAVE_ZLIB |