diff options
author | Harald Radi <phanto@php.net> | 2003-01-10 23:36:18 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2003-01-10 23:36:18 +0000 |
commit | c3867a7c8e6bb224b809ac4831eee6cbdc839740 (patch) | |
tree | 8e4d1fe2ac34d4b70b1d65215bb49e47c6da9f2f /main/internal_functions_win32.c | |
parent | 16cda12728e04365b91241b15d2eddf9c99aa4af (diff) | |
download | php-git-c3867a7c8e6bb224b809ac4831eee6cbdc839740.tar.gz |
HEAD defaults to build with ZE2 now
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index d730bee3f5..7ecf27361f 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -54,8 +54,8 @@ #if HAVE_CTYPE #include "ext/ctype/php_ctype.h" #endif -#if HAVE_COM -#include "ext/com/php_COM.h" +#if HAVE_RPC +#include "ext/rpc/php_rpc.h" #endif #if HAVE_FTP #include "ext/ftp/php_ftp.h" @@ -82,11 +82,6 @@ #if HAVE_MBSTRING #include "ext/mbstring/mbstring.h" #endif -#ifndef ZEND_ENGINE_2 -#if HAVE_OVERLOAD -#include "ext/overload/php_overload.h" -#endif -#endif #if HAVE_TOKENIZER #include "ext/tokenizer/php_tokenizer.h" #endif @@ -108,8 +103,8 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_CTYPE ,phpext_ctype_ptr #endif -#if HAVE_COM - ,phpext_com_ptr +#if HAVE_RPC + ,phpext_rpc_ptr #endif #if HAVE_FTP ,phpext_ftp_ptr @@ -123,11 +118,6 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_UODBC ,phpext_odbc_ptr #endif -#ifndef ZEND_ENGINE_2 -#if HAVE_OVERLOAD - ,phpext_overload_ptr -#endif -#endif #if HAVE_PCRE || HAVE_BUNDLED_PCRE ,phpext_pcre_ptr #endif |