diff options
author | Marcus Boerger <helly@php.net> | 2005-08-26 15:24:26 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2005-08-26 15:24:26 +0000 |
commit | 271f5d04ecafaf27c679d248e08d5185384a412a (patch) | |
tree | 5c84debf4cbcadae29fbfabe99eebf42597f0375 /ext | |
parent | cdcf566a21f6cb572d1d26ad6341e18564caec32 (diff) | |
download | php-git-271f5d04ecafaf27c679d248e08d5185384a412a.tar.gz |
- Check for static libs, too
Diffstat (limited to 'ext')
-rw-r--r-- | ext/ming/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ming/config.m4 b/ext/ming/config.m4 index 6a1bb21b04..a20e3bd980 100644 --- a/ext/ming/config.m4 +++ b/ext/ming/config.m4 @@ -9,7 +9,7 @@ if test "$PHP_MING" != "no"; then AC_CHECK_LIB(m, sin) for i in $PHP_MING /usr/local /usr; do - if test -f $i/$PHP_LIBDIR/libming.$SHLIB_SUFFIX_NAME -o -f $i/lib/libming.a; then + if test -f $i/$PHP_LIBDIR/libming.$SHLIB_SUFFIX_NAME -o -f $i/$PHP_LIBDIR/libming.a; then MING_DIR=$i break fi |