]> granicus.if.org Git - php/commitdiff
- set PHP_[EXTNAME] to yes for spl, pcre and reflection (always on), this variable...
authorPierre Joye <pajoye@php.net>
Mon, 23 Jun 2008 10:22:42 +0000 (10:22 +0000)
committerPierre Joye <pajoye@php.net>
Mon, 23 Jun 2008 10:22:42 +0000 (10:22 +0000)
ext/pcre/config.w32
ext/reflection/config.w32
ext/spl/config.w32

index 64425cc09e55171f741012ca95ca87e83ad71a4b..f0d88862fd977afd33e91ada7f3c9dc14d674de7 100644 (file)
@@ -3,8 +3,9 @@
 
 EXTENSION("pcre", "php_pcre.c", false /* never shared */,
                "-DNO_RECURSE -Iext/pcre/pcrelib");
-       ADD_SOURCES("ext/pcre/pcrelib", "pcre_chartables.c pcre_ucp_searchfuncs.c pcre_compile.c pcre_config.c pcre_exec.c pcre_fullinfo.c pcre_get.c pcre_globals.c pcre_info.c pcre_maketables.c pcre_newline.c pcre_ord2utf8.c pcre_refcount.c pcre_study.c pcre_tables.c pcre_try_flipped.c pcre_valid_utf8.c pcre_version.c pcre_xclass.c", "pcre");
-       ADD_DEF_FILE("ext\\pcre\\php_pcre.def");
+ADD_SOURCES("ext/pcre/pcrelib", "pcre_chartables.c pcre_ucp_searchfuncs.c pcre_compile.c pcre_config.c pcre_exec.c pcre_fullinfo.c pcre_get.c pcre_globals.c pcre_info.c pcre_maketables.c pcre_newline.c pcre_ord2utf8.c pcre_refcount.c pcre_study.c pcre_tables.c pcre_try_flipped.c pcre_valid_utf8.c pcre_version.c pcre_xclass.c", "pcre");
+ADD_DEF_FILE("ext\\pcre\\php_pcre.def");
 
-       AC_DEFINE('HAVE_BUNDLED_PCRE', 1, 'Using bundled PCRE library');
-       AC_DEFINE('HAVE_PCRE', 1, 'Have PCRE library');
+AC_DEFINE('HAVE_BUNDLED_PCRE', 1, 'Using bundled PCRE library');
+AC_DEFINE('HAVE_PCRE', 1, 'Have PCRE library');
+PHP_PCRE="yes";
\ No newline at end of file
index 90b076acb13a9eec0ed66f0f2258775160a9f211..724bf7bde47b45496bf9ee52230a67d06cab360f 100755 (executable)
@@ -3,3 +3,4 @@
 
 EXTENSION("reflection", "php_reflection.c", false /* never shared */);
 AC_DEFINE('HAVE_REFLECTION', 1, 'Reflection support enabled');
+PHP_REFLECTION="yes";
\ No newline at end of file
index 08f33da7557dcbee3c4aadeb468bcd6b37074099..eeaec58bf6c552c337846aeab48be2a9b5581d1d 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 // vim:ft=javascript
 
-       EXTENSION("spl", "php_spl.c spl_functions.c spl_engine.c spl_iterators.c spl_array.c spl_directory.c spl_sxe.c spl_exceptions.c spl_observer.c spl_dllist.c spl_heap.c spl_fixedarray.c", false /*never shared */);
-       AC_DEFINE('HAVE_SPL', 1);
-
+EXTENSION("spl", "php_spl.c spl_functions.c spl_engine.c spl_iterators.c spl_array.c spl_directory.c spl_sxe.c spl_exceptions.c spl_observer.c spl_dllist.c spl_heap.c spl_fixedarray.c", false /*never shared */);
+AC_DEFINE('HAVE_SPL', 1);
+PHP_SPL="yes";