summaryrefslogtreecommitdiff
path: root/ext/ereg/config.w32
diff options
context:
space:
mode:
authorElizabeth Marie Smith <auroraeosrose@php.net>2008-05-14 03:32:27 +0000
committerElizabeth Marie Smith <auroraeosrose@php.net>2008-05-14 03:32:27 +0000
commit132ecdfa7df50c2f92d3444257c29f5c3a28f7b9 (patch)
tree5e54914dd572583364f0d1a45097dfd276637d9a /ext/ereg/config.w32
parent53fb8271f6c47bbf15ed02c48b3d495c61f09c27 (diff)
downloadphp-git-132ecdfa7df50c2f92d3444257c29f5c3a28f7b9.tar.gz
MFB and steph's pecl fixes into confutils
Diffstat (limited to 'ext/ereg/config.w32')
-rw-r--r--ext/ereg/config.w3212
1 files changed, 8 insertions, 4 deletions
diff --git a/ext/ereg/config.w32 b/ext/ereg/config.w32
index 9a25368df0..59cdb04685 100644
--- a/ext/ereg/config.w32
+++ b/ext/ereg/config.w32
@@ -1,7 +1,11 @@
// $Id$
// vim:ft=javascript
-EXTENSION("ereg", "ereg.c", false /* never shared */, "-Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/regex");
-ADD_SOURCES("ext/ereg/regex", "regcomp.c regexec.c regerror.c regfree.c", "ereg");
-AC_DEFINE('REGEX', 1, 'Bundled regex');
-AC_DEFINE('HSREGEX', 1, 'Bundled regex');
+ARG_WITH("ereg", "POSIX extended regular expressions", "yes");
+if (PHP_EREG != "no") {
+
+ EXTENSION("ereg", "ereg.c", false /* never shared */, "-Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/regex");
+ ADD_SOURCES("ext/ereg/regex", "regcomp.c regexec.c regerror.c regfree.c", "ereg");
+ AC_DEFINE('REGEX', 1, 'Bundled regex');
+ AC_DEFINE('HSREGEX', 1, 'Bundled regex');
+} \ No newline at end of file