sixd            Thu Aug  2 19:38:09 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/pdo_oci        config.m4 
  Log:
  Fix message grammar and capitalization
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_oci/config.m4?r1=1.14.2.5.2.1&r2=1.14.2.5.2.2&diff_format=u
Index: php-src/ext/pdo_oci/config.m4
diff -u php-src/ext/pdo_oci/config.m4:1.14.2.5.2.1 
php-src/ext/pdo_oci/config.m4:1.14.2.5.2.2
--- php-src/ext/pdo_oci/config.m4:1.14.2.5.2.1  Tue Jul  3 17:25:35 2007
+++ php-src/ext/pdo_oci/config.m4       Thu Aug  2 19:38:08 2007
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.14.2.5.2.1 2007/07/03 17:25:35 sniper Exp $
+dnl $Id: config.m4,v 1.14.2.5.2.2 2007/08/02 19:38:08 sixd Exp $
 
 if test "$PHP_PDO" != "no"; then
 
@@ -29,7 +29,7 @@
 
 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 @@
 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 @@
       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 @@
     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

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to