diff options
author | foobar <sniper@php.net> | 2001-05-10 09:25:32 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-05-10 09:25:32 +0000 |
commit | 9fa37f60dc8afe00a171ea5f37f15b06f805c5d3 (patch) | |
tree | 97d3f10c372ef2219dd5ae05792f9ec4e6781708 /ext/oracle | |
parent | 9cce67f16d59f87637dac8e4e63cb396461bd15f (diff) | |
download | php-git-9fa37f60dc8afe00a171ea5f37f15b06f805c5d3.tar.gz |
Fixed bug: #10779
Diffstat (limited to 'ext/oracle')
-rw-r--r-- | ext/oracle/config.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oracle/config.m4 b/ext/oracle/config.m4 index ec79db0575..856204a6ff 100644 --- a/ext/oracle/config.m4 +++ b/ext/oracle/config.m4 @@ -9,11 +9,11 @@ AC_DEFUN(AC_ORACLE_VERSION,[ ORACLE_VERSION=8.1 elif test -f $ORACLE_DIR/lib/libclntsh.s?.1.0; then ORACLE_VERSION=8.0 - elif test -f $OCI8_DIR/lib/libclntsh.a; then - if test -f $OCI8_DIR/lib/libcore4.a; then - OCI8_VERSION=8.0 + elif test -f $ORACLE_DIR/lib/libclntsh.a; then + if test -f $ORACLE_DIR/lib/libcore4.a; then + ORACLE_VERSION=8.0 else - OCI8_VERSION=8.1 + ORACLE_VERSION=8.1 fi else AC_MSG_ERROR(Oracle needed libraries not found) |