mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib
to support multi-ABI platforms.
This commit is contained in:
parent
557cda47a0
commit
2685ca935f
27 changed files with 92 additions and 92 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue