diff options
author | Joe Orton <jorton@php.net> | 2004-11-03 14:32:52 +0000 |
---|---|---|
committer | Joe Orton <jorton@php.net> | 2004-11-03 14:32:52 +0000 |
commit | 2685ca935fceb0dbb4cb61161c93444cec7eef2c (patch) | |
tree | d8a3df250ee349710abf8ff900af5226b6d05c9f /ext/recode | |
parent | 557cda47a06bd879835d864c1874671b35f82093 (diff) | |
download | php-git-2685ca935fceb0dbb4cb61161c93444cec7eef2c.tar.gz |
Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/lib
to support multi-ABI platforms.
Diffstat (limited to 'ext/recode')
-rw-r--r-- | ext/recode/config.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/recode/config.m4 b/ext/recode/config.m4 index aa94914df8..fbdade3d9f 100644 --- a/ext/recode/config.m4 +++ b/ext/recode/config.m4 @@ -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 |