diff options
author | Marcus Boerger <helly@php.net> | 2005-12-22 08:57:50 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-12-22 08:57:50 +0000 |
commit | c04b25f63c986cf8e4979a3e64108ed1d504b496 (patch) | |
tree | 18d8891f0bd946abea7f98ba7e4abf8d7316ee2d | |
parent | 9faaef0d08fc424794fc2a2749389c4685ff8ab1 (diff) | |
download | php-git-c04b25f63c986cf8e4979a3e64108ed1d504b496.tar.gz |
- Find lib in default locations, too
-rw-r--r-- | ext/xml/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xml/config.m4 b/ext/xml/config.m4 index 5a2630bdcf..65f22915b9 100644 --- a/ext/xml/config.m4 +++ b/ext/xml/config.m4 @@ -36,7 +36,7 @@ if test "$PHP_XML" != "no"; then dnl Check for expat only if --with-libexpat-dir is used. dnl if test "$PHP_LIBEXPAT_DIR" != "no"; then - for i in $PHP_XML $PHP_LIBEXPAT_DIR; do + for i in $PHP_XML $PHP_LIBEXPAT_DIR /usr /usr/local; do if test -f "$i/$PHP_LIBDIR/libexpat.a" || test -f "$i/$PHP_LIBDIR/libexpat.$SHLIB_SUFFIX_NAME"; then EXPAT_DIR=$i break |