diff options
author | Thies C. Arntzen <thies@php.net> | 2000-05-15 10:01:51 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-05-15 10:01:51 +0000 |
commit | 2a6fbb620c5d296a8634fb8e8a312861a35025c9 (patch) | |
tree | fc1714ea89f3872d22a34f2ee8894f3fdacd787a /ext | |
parent | 4a658e8b51da2d16bec9ff34e75423df0fa3af15 (diff) | |
download | php-git-2a6fbb620c5d296a8634fb8e8a312861a35025c9.tar.gz |
fix .sl <-> .so recognition
Diffstat (limited to 'ext')
-rw-r--r-- | ext/oci8/config.m4 | 6 | ||||
-rw-r--r-- | ext/oracle/config.m4 | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/oci8/config.m4 b/ext/oci8/config.m4 index a312ac8bc3..22e36bc6c9 100644 --- a/ext/oci8/config.m4 +++ b/ext/oci8/config.m4 @@ -5,11 +5,11 @@ AC_DEFUN(AC_OCI8_VERSION,[ if test -f "$OCI8_DIR/orainst/unix.rgs"; then OCI8_VERSION=`grep '"ocommon"' $OCI8_DIR/orainst/unix.rgs | sed 's/[ ][ ]*/:/g' | cut -d: -f 6 | cut -c 2-4` test -z "$OCI8_VERSION" && OCI8_VERSION=7.3 - elif test -f "$OCI8_DIR/lib/libclntsh.s?.8.0"; then + elif test -f $OCI8_DIR/lib/libclntsh.s?.8.0; then OCI8_VERSION=8.1 - elif test -f "$OCI8_DIR/lib/libclntsh.s?.1.0"; then + elif test -f $OCI8_DIR/lib/libclntsh.s?.1.0; then OCI8_VERSION=8.0 - elif test -f "$OCI8_DIR/lib/libclntsh.a"; then # AIX - XXX is this check still right for 8.1? + elif test -f $OCI8_DIR/lib/libclntsh.a; then # AIX - XXX is this check still right for 8.1? OCI8_VERSION=8.0 else AC_MSG_ERROR(Oracle-OCI8 needed libraries not found) diff --git a/ext/oracle/config.m4 b/ext/oracle/config.m4 index b55706e52c..44db4151c7 100644 --- a/ext/oracle/config.m4 +++ b/ext/oracle/config.m4 @@ -5,11 +5,11 @@ AC_DEFUN(AC_ORACLE_VERSION,[ if test -f "$ORACLE_DIR/orainst/unix.rgs"; then ORACLE_VERSION=`grep '"ocommon"' $ORACLE_DIR/orainst/unix.rgs | sed 's/[ ][ ]*/:/g' | cut -d: -f 6 | cut -c 2-4` test -z "$ORACLE_VERSION" && ORACLE_VERSION=7.3 - elif test -f "$ORACLE_DIR/lib/libclntsh.s?.8.0"; then + elif test -f $ORACLE_DIR/lib/libclntsh.s?.8.0; then ORACLE_VERSION=8.1 - elif test -f "$ORACLE_DIR/lib/libclntsh.s?.1.0"; then + elif test -f $ORACLE_DIR/lib/libclntsh.s?.1.0; then ORACLE_VERSION=8.0 - elif test -f "$ORACLE_DIR/lib/libclntsh.a"; then # AIX - XXX is this check still right for 8.1? + elif test -f $ORACLE_DIR/lib/libclntsh.a; then # AIX - XXX is this check still right for 8.1? ORACLE_VERSION=8.0 else AC_MSG_ERROR(Oracle needed libraries not found) |