summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>1999-11-13 16:51:33 +0000
committerSascha Schumann <sas@php.net>1999-11-13 16:51:33 +0000
commitbcb2214e9951b271d073314870bf09a6a87435f5 (patch)
treeb3a1540deb25e4480d62c57854ba092479191e28 /main/php.h
parentc166a6fb835c5b43a782da141c1543e8a1878229 (diff)
downloadphp-git-bcb2214e9951b271d073314870bf09a6a87435f5.tar.gz
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".
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h4
1 files changed, 4 insertions, 0 deletions
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"