diff options
| author | Nuno Lopes <nlopess@php.net> | 2008-08-11 15:42:35 +0000 |
|---|---|---|
| committer | Nuno Lopes <nlopess@php.net> | 2008-08-11 15:42:35 +0000 |
| commit | 65b1e128a99c6715acbca6c4df71e6d0cac84b88 (patch) | |
| tree | a7fb34a0ccea5002e9f3b445b57495eecc4d9d7b | |
| parent | c573dd661421c6bb3413f79ebecb66ca93d84e3c (diff) | |
| download | php-git-65b1e128a99c6715acbca6c4df71e6d0cac84b88.tar.gz | |
MFH: fix build when pcre is not present
| -rw-r--r-- | ext/mbstring/mbstring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c index d30e54a83f..199a0e8915 100644 --- a/ext/mbstring/mbstring.c +++ b/ext/mbstring/mbstring.c @@ -86,7 +86,7 @@ #include <oniguruma.h> #undef UChar #elif HAVE_PCRE || HAVE_BUNDLED_PCRE -#include <pcre.h> +#include "ext/pcre/php_pcre.h" #endif /* }}} */ |
