felipe          Sat Mar  8 14:01:49 2008 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/pdo_oci        oci_driver.c 
  Log:
  Fixed bug #44373 (PDO_OCI extension compile failed)
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_oci/oci_driver.c?r1=1.24.2.4.2.9&r2=1.24.2.4.2.10&diff_format=u
Index: php-src/ext/pdo_oci/oci_driver.c
diff -u php-src/ext/pdo_oci/oci_driver.c:1.24.2.4.2.9 
php-src/ext/pdo_oci/oci_driver.c:1.24.2.4.2.10
--- php-src/ext/pdo_oci/oci_driver.c:1.24.2.4.2.9       Mon Dec 31 07:20:09 2007
+++ php-src/ext/pdo_oci/oci_driver.c    Sat Mar  8 14:01:49 2008
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: oci_driver.c,v 1.24.2.4.2.9 2007/12/31 07:20:09 sebastian Exp $ */
+/* $Id: oci_driver.c,v 1.24.2.4.2.10 2008/03/08 14:01:49 felipe Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -494,7 +494,7 @@
                        OCIClientVersion(&major, &minor, &update, &patch, 
&port_update);
                        slprintf(verstr, sizeof(verstr), "%d.%d.%d.%d.%d", 
major, minor, update, patch, port_update);
                        ZVAL_STRING(return_value, verstr, 1);
-#elif PHP_PDO_OCI_CLIENT_VERSION
+#elif defined(PHP_PDO_OCI_CLIENT_VERSION)
                        /* Compile time client version */
                        ZVAL_STRING(return_value, PHP_PDO_OCI_CLIENT_VERSION, 
1);
 #else



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

Reply via email to