summaryrefslogtreecommitdiff
path: root/ext/pdo_oci
diff options
context:
space:
mode:
authorChristopher Jones <sixd@php.net>2007-08-02 19:38:08 +0000
committerChristopher Jones <sixd@php.net>2007-08-02 19:38:08 +0000
commit5534e4381d476eadeea9fed1a5f92e65c55bd7e5 (patch)
tree1498000a6f5e8da06089545b716f92c1e359536b /ext/pdo_oci
parentf894c6ece74160e6753992a8f85ccff90ae1a43a (diff)
downloadphp-git-5534e4381d476eadeea9fed1a5f92e65c55bd7e5.tar.gz
Fix message grammar and capitalization
Diffstat (limited to 'ext/pdo_oci')
-rwxr-xr-xext/pdo_oci/config.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/pdo_oci/config.m4 b/ext/pdo_oci/config.m4
index 6f35ad6b16..ff927ed520 100755
--- a/ext/pdo_oci/config.m4
+++ b/ext/pdo_oci/config.m4
@@ -29,7 +29,7 @@ AC_DEFUN([AC_PDO_OCI_VERSION],[
AC_DEFUN([AC_PDO_OCI_CHECK_LIB_DIR],[
AC_CHECK_SIZEOF(long int, 4)
- AC_MSG_CHECKING([checking if we're at 64-bit platform])
+ AC_MSG_CHECKING([if we're on a 64-bit platform])
if test "$ac_cv_sizeof_long_int" = "4" ; then
AC_MSG_RESULT([no])
TMP_PDO_OCI_LIB_DIR="$PDO_OCI_DIR/lib32"
@@ -54,9 +54,9 @@ AC_DEFUN([AC_PDO_OCI_CHECK_LIB_DIR],[
PHP_ARG_WITH(pdo-oci, Oracle OCI support for PDO,
[ --with-pdo-oci[=DIR] PDO: Oracle-OCI support. DIR defaults to \$ORACLE_HOME.
Use --with-pdo-oci=instantclient,prefix,version
- for an Oracle InstantClient SDK.
- For Linux with 10.1.0.3 rpms (for example) use:
- --with-pdo-oci=instantclient,/usr,10.1.0.3])
+ for an Oracle Instant Client SDK.
+ For Linux with 10.2.0.3 RPMs (for example) use:
+ --with-pdo-oci=instantclient,/usr,10.2.0.3])
if test "$PHP_PDO_OCI" != "no"; then
AC_MSG_CHECKING([Oracle Install-Dir])
@@ -95,7 +95,7 @@ You need to tell me where to find your oracle SDK, or set ORACLE_HOME.
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])
+ AC_MSG_ERROR([I'm too dumb to figure out where the include dir is in your Instant Client install])
fi
if test -f "$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/lib/libclntsh.so" ; then
PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX/lib/oracle/$PDO_OCI_IC_VERS/client/lib"
@@ -104,7 +104,7 @@ You need to tell me where to find your oracle SDK, or set ORACLE_HOME.
elif test -f "$PDO_OCI_IC_PREFIX/libclntsh.so" ; then
PDO_OCI_LIB_DIR="$PDO_OCI_IC_PREFIX"
else
- AC_MSG_ERROR([I'm too dumb to figure out where the libraries are in your instant client install])
+ AC_MSG_ERROR([I'm too dumb to figure out where the libraries are in your Instant Client install])
fi
PDO_OCI_VERSION="`echo $PDO_OCI_IC_VERS | cut -d. -f1-2`"
else