Skip to content

Commit ee45d78

Browse files
committed
Fix Win32 build. Patch by Jan Ehrhardt.
1 parent effd554 commit ee45d78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config.w32

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// $Id$
22
// vim:ft=javascript
33

4-
ARG_WITH("ereg", "POSIX extended regular expressions", "yes");
4+
ARG_WITH("ereg", "POSIX extended regular expressions", "no");
55
if (PHP_EREG != "no") {
66

7-
EXTENSION("ereg", "ereg.c", PHP_EREG_SHARED, "-Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/regex /DZEND_ENABLE_STATIC_TSRMLS_CACHE=1");
7+
EXTENSION("ereg", "ereg.c", PHP_EREG_SHARED, "-Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/regex");
88
ADD_SOURCES("ext/ereg/regex", "regcomp.c regexec.c regerror.c regfree.c", "ereg");
99
AC_DEFINE('REGEX', 1, 'Bundled regex');
1010
AC_DEFINE('HSREGEX', 1, 'Bundled regex');

0 commit comments

Comments
 (0)