From bcb2214e9951b271d073314870bf09a6a87435f5 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sat, 13 Nov 1999 16:51:33 +0000 Subject: 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". --- main/php.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index a778c5dff6..b0dd5cb7b4 100644 --- a/main/php.h +++ b/main/php.h @@ -203,6 +203,10 @@ extern char *strerror(int); #define UNBLOCK_INTERRUPTIONS unblock_alarms #endif +#if REGEX == 1 || REGEX == 0 +#include "regex/regex_extra.h" +#endif + #if HAVE_PWD_H # if WIN32||WINNT #include "win32/pwd.h" -- cgit v1.2.1