xref: /PHP-5.5/ext/ereg/config.w32 (revision aea6771d)
1// $Id$
2// vim:ft=javascript
3
4ARG_WITH("ereg", "POSIX extended regular expressions", "yes");
5if (PHP_EREG != "no") {
6
7	EXTENSION("ereg", "ereg.c", PHP_EREG_SHARED, "-Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/regex");
8	ADD_SOURCES("ext/ereg/regex", "regcomp.c regexec.c regerror.c regfree.c", "ereg");
9	AC_DEFINE('REGEX', 1, 'Bundled regex');
10	AC_DEFINE('HSREGEX', 1, 'Bundled regex');
11	PHP_INSTALL_HEADERS("ext/ereg", "php_ereg.h php_regex.h regex/");
12}
13