php-src/ext/ereg/regex/regex_extra.h
Sascha Schumann bcb2214e99 Improve regex library selection. It lets user specify whether they want
system, apache, or php's regex library by using the --with-regex option.
"php" is the default; if you use --with-apache in combination with
Apache 1.3.x, the default is "apache".
1999-11-13 16:51:33 +00:00

14 lines
242 B
C

#undef regexec
#undef regerror
#undef regfree
#undef regcomp
#if (defined(REGEX) && REGEX == 1) || (!defined(REGEX))
#define regexec php_regexec
#define regerror php_regerror
#define regfree php_regfree
#define regcomp php_regcomp
#endif