diff options
author | Andrey Hristov <andrey@php.net> | 1999-09-13 14:15:22 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-09-13 14:15:22 +0000 |
commit | 93c35c33523affda66632bda9c028d9f80dc4df0 (patch) | |
tree | 2d12a96d7c0feec49685cc01cc2b01724b1e9e4c /ext/oci8 | |
parent | c21663b3e786b5fdfdc8a96a5ed82fd5d566cd98 (diff) | |
download | php-git-93c35c33523affda66632bda9c028d9f80dc4df0.tar.gz |
Per Stig's suggestion.
Diffstat (limited to 'ext/oci8')
-rw-r--r-- | ext/oci8/config.m4 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/oci8/config.m4 b/ext/oci8/config.m4 index 8d2f2a9527..53cb495267 100644 --- a/ext/oci8/config.m4 +++ b/ext/oci8/config.m4 @@ -4,7 +4,9 @@ AC_DEFUN(AC_ORACLE_VERSION,[ AC_MSG_CHECKING([Oracle version]) if test -f "$ORACLEINST_TOP/orainst/unix.rgs" then - ORACLE_VERSION=`grep '"ocommon"' $ORACLEINST_TOP/orainst/unix.rgs | sed 's/[[ ]][[ ]]*/:/g' | cut -d: -f 6 | cut -c 2-4` + changequote({,}) + ORACLE_VERSION=`grep '"ocommon"' $ORACLEINST_TOP/orainst/unix.rgs | sed 's/[ ][ ]*/:/g' | cut -d: -f 6 | cut -c 2-4` + changequote([,]) test -z "$ORACLE_VERSION" && ORACLE_VERSION=7.3 else if test -f "$ORACLEINST_TOP/lib/libclntsh.so.8.0" |