Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib

to support multi-ABI platforms.
This commit is contained in:
Joe Orton 2004-11-03 14:32:52 +00:00
parent 557cda47a0
commit 2685ca935f
27 changed files with 92 additions and 92 deletions

View file

@ -12,17 +12,17 @@ if test "$PHP_RECODE" != "no"; then
if test -f $i/include/recode.h; then
RECODE_DIR=$i
RECODE_INC=include
RECODE_LIB=lib
RECODE_LIB=$PHP_LIBDIR
fi
if test -f $i/include/recode/recode.h; then
RECODE_DIR=$i
RECODE_INC=include/recode
RECODE_LIB=lib/recode
RECODE_LIB=$PHP_LIBDIR/recode
fi
if test -f $i/recode/include/recode.h; then
RECODE_DIR=$i/recode
RECODE_INC=include
RECODE_LIB=lib
RECODE_LIB=$PHP_LIBDIR
fi
test -n "$RECODE_DIR" && break
done