summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2006-02-16 02:03:13 +0000
committerSara Golemon <pollita@php.net>2006-02-16 02:03:13 +0000
commita790d6ed3dc537ad4bd61da0e466816ef5ed0f01 (patch)
tree3e8516221d1a630687bcb513dc589cb997675d9f
parent716d22a8f640ba219c01f85e1e31046f9f4470d8 (diff)
downloadphp-git-a790d6ed3dc537ad4bd61da0e466816ef5ed0f01.tar.gz
Fix copy/paste problems for instantclient
-rwxr-xr-xext/pdo_oci/config.m48
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