diff options
author | Sascha Schumann <sas@php.net> | 2000-02-18 10:13:15 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-02-18 10:13:15 +0000 |
commit | 02d647b5f9b71dc8be2b9c6bdc87c4850c07683b (patch) | |
tree | 00a17e8da71215f677e353a776d6983db2bff018 /main/php.h | |
parent | 9935ddee9957aea72ca48e2f9be27631415def9b (diff) | |
download | php-git-02d647b5f9b71dc8be2b9c6bdc87c4850c07683b.tar.gz |
Fix warnings when compiling static Apache module
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php.h b/main/php.h index ccccc78509..ff9ddc4e04 100644 --- a/main/php.h +++ b/main/php.h @@ -163,7 +163,7 @@ extern char *strerror(int); #include "fopen-wrappers.h" -#if REGEX == 1 || REGEX == 0 +#if (REGEX == 1 || REGEX == 0) && !defined(NO_REGEX_EXTRA_H) #include "regex/regex_extra.h" #endif |