summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2008-08-11 15:42:35 +0000
committerNuno Lopes <nlopess@php.net>2008-08-11 15:42:35 +0000
commit65b1e128a99c6715acbca6c4df71e6d0cac84b88 (patch)
treea7fb34a0ccea5002e9f3b445b57495eecc4d9d7b
parentc573dd661421c6bb3413f79ebecb66ca93d84e3c (diff)
downloadphp-git-65b1e128a99c6715acbca6c4df71e6d0cac84b88.tar.gz
MFH: fix build when pcre is not present
-rw-r--r--ext/mbstring/mbstring.c2
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
/* }}} */