Annotation of embedaddon/php/ext/ereg/config.w32, revision 1.1.1.1

1.1       misho       1: // $Id: config.w32 306344 2010-12-13 18:43:10Z pajoye $
                      2: // vim:ft=javascript
                      3: 
                      4: ARG_WITH("ereg", "POSIX extended regular expressions", "yes");
                      5: if (PHP_EREG != "no") {
                      6: 
                      7:        EXTENSION("ereg", "ereg.c", false /* never 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: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>