diff options
author | Sara Golemon <pollita@php.net> | 2006-02-16 02:03:13 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2006-02-16 02:03:13 +0000 |
commit | a790d6ed3dc537ad4bd61da0e466816ef5ed0f01 (patch) | |
tree | 3e8516221d1a630687bcb513dc589cb997675d9f | |
parent | 716d22a8f640ba219c01f85e1e31046f9f4470d8 (diff) | |
download | php-git-a790d6ed3dc537ad4bd61da0e466816ef5ed0f01.tar.gz |
Fix copy/paste problems for instantclient
-rwxr-xr-x | ext/pdo_oci/config.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pdo_oci/config.m4 b/ext/pdo_oci/config.m4 index 136f4d2e7b..6f8f9c4982 100755 --- a/ext/pdo_oci/config.m4 +++ b/ext/pdo_oci/config.m4 @@ -88,11 +88,11 @@ You need to tell me where to find your oracle SDK, or set ORACLE_HOME. PHP_ADD_INCLUDE($PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/include) AC_MSG_RESULT($PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/include) elif test -f $PDO_OCI_IC_PREFIX/sdk/include/oci.h ; then - PHP_ADD_INCLUDE($PDO_OCI_PREFIX/sdk/include) - AC_MSG_RESULT($PDO_OCI_PREFIX/sdk/include) + PHP_ADD_INCLUDE($PDO_OCI_IC_PREFIX/sdk/include) + AC_MSG_RESULT($PDO_OCI_IC_PREFIX/sdk/include) elif test -f $PDO_OCI_IC_PREFIX/client/include/oci.h ; then - PHP_ADD_INCLUDE($PDO_OCI_PREFIX/client/include) - AC_MSG_RESULT($PDO_OCI_PREFIX/client/include) + PHP_ADD_INCLUDE($PDO_OCI_IC_PREFIX/client/include) + AC_MSG_RESULT($PDO_OCI_IC_PREFIX/client/include) else AC_MSG_ERROR([I'm too dumb to figure out where the include dir is in your instant client install]) fi |