summaryrefslogtreecommitdiff
path: root/main/internal_functions_win32.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2006-06-05 09:02:28 +0000
committerStanislav Malyshev <stas@php.net>2006-06-05 09:02:28 +0000
commit1ebb0590bdb70ed5965f9eb89088f68e3c477f3c (patch)
tree654c479682977858c32b06fe18bc8ac1a7cfac0e /main/internal_functions_win32.c
parenta588f2dc6066930db6574f98666f079cefe278ec (diff)
downloadphp-git-1ebb0590bdb70ed5965f9eb89088f68e3c477f3c.tar.gz
improve .dsp build
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r--main/internal_functions_win32.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c
index 6edde1ea4d..a2d7cf0e29 100644
--- a/main/internal_functions_win32.c
+++ b/main/internal_functions_win32.c
@@ -48,6 +48,7 @@
#include "ext/standard/php_lcg.h"
#include "ext/standard/php_array.h"
#include "ext/standard/php_assert.h"
+#include "ext/reflection/php_reflection.h"
#if HAVE_BCMATH
#include "ext/bcmath/php_bcmath.h"
#endif
@@ -57,9 +58,15 @@
#if HAVE_CTYPE
#include "ext/ctype/php_ctype.h"
#endif
+#if HAVE_DATE
+#include "ext/date/php_date.h"
+#endif
#if HAVE_FTP
#include "ext/ftp/php_ftp.h"
#endif
+#if HAVE_ICONV
+#include "ext/iconv/php_iconv.h"
+#endif
#include "ext/standard/reg.h"
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
#include "ext/pcre/php_pcre.h"
@@ -98,6 +105,15 @@
#include "ext/sqlite/php_sqlite.h"
#endif
#include "ext/com_dotnet/php_com_dotnet.h"
+#ifdef HAVE_SPL
+#include "ext/spl/php_spl.h"
+#endif
+#if HAVE_XML && HAVE_XMLREADER
+#include "ext/xmlreader/php_xmlreader.h"
+#endif
+#if HAVE_XML && HAVE_XMLWRITER
+#include "ext/xmlwriter/php_xmlwriter.h"
+#endif
/* }}} */
/* {{{ php_builtin_extensions[]
@@ -114,9 +130,18 @@ zend_module_entry *php_builtin_extensions[] = {
#if HAVE_CTYPE
,phpext_ctype_ptr
#endif
+#if HAVE_DATE
+ ,phpext_date_ptr
+#endif
#if HAVE_FTP
,phpext_ftp_ptr
#endif
+#if HAVE_HASH
+ ,phpext_hash_ptr
+#endif
+#if HAVE_ICONV
+ ,phpext_iconv_ptr
+#endif
#if HAVE_MBSTRING
,phpext_mbstring_ptr
#endif
@@ -126,6 +151,7 @@ zend_module_entry *php_builtin_extensions[] = {
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
,phpext_pcre_ptr
#endif
+ ,phpext_reflection_ptr
#if HAVE_PHP_SESSION
,phpext_session_ptr
#endif
@@ -153,6 +179,15 @@ zend_module_entry *php_builtin_extensions[] = {
#if HAVE_SQLITE
,phpext_sqlite_ptr
#endif
+#if HAVE_SPL
+ ,phpext_spl_ptr
+#endif
+#if HAVE_XML && HAVE_XMLREADER
+ ,phpext_xmlreader_ptr
+#endif
+#if HAVE_XML && HAVE_XMLWRITER
+ ,phpext_xmlwriter_ptr
+#endif
};
/* }}} */