diff options
author | Scott MacVicar <scottmac@php.net> | 2009-08-11 21:40:15 +0000 |
---|---|---|
committer | Scott MacVicar <scottmac@php.net> | 2009-08-11 21:40:15 +0000 |
commit | 6ffe4b2eff016022d7eda20d4cadb48f429d0486 (patch) | |
tree | 2a2e9369566f83b8fb2560ad1f5bdc7abf46b3f3 /ext/pcre/config0.m4 | |
parent | 73fbaa9ee03f160a3f4cb10e35ad20537f259f0b (diff) | |
download | php-git-6ffe4b2eff016022d7eda20d4cadb48f429d0486.tar.gz |
We should check /usr/local/include last
Diffstat (limited to 'ext/pcre/config0.m4')
-rw-r--r-- | ext/pcre/config0.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/config0.m4 b/ext/pcre/config0.m4 index bb084acd1f..644ebbd328 100644 --- a/ext/pcre/config0.m4 +++ b/ext/pcre/config0.m4 @@ -11,7 +11,7 @@ PHP_ARG_WITH(pcre-regex,, if test "$PHP_PCRE_REGEX" != "yes" && test "$PHP_PCRE_REGEX" != "no"; then AC_MSG_CHECKING([for PCRE headers location]) - for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include $PHP_PCRE_REGEX/local/include $PHP_PCRE_REGEX/include/pcre; do + for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include $PHP_PCRE_REGEX/include/pcre $PHP_PCRE_REGEX/local/include; do test -f $i/pcre.h && PCRE_INCDIR=$i done |