]> granicus.if.org Git - php/commitdiff
Fixed bug #44373 (PDO_OCI extension compile failed)
authorFelipe Pena <felipe@php.net>
Sat, 8 Mar 2008 14:01:49 +0000 (14:01 +0000)
committerFelipe Pena <felipe@php.net>
Sat, 8 Mar 2008 14:01:49 +0000 (14:01 +0000)
ext/pdo_oci/oci_driver.c

index 1e5e83a86719150cd3293ae3c99b83655a2b9b20..f761c14f90d929b08838877ed020b4f8ac6d34f4 100755 (executable)
@@ -494,7 +494,7 @@ static int oci_handle_get_attribute(pdo_dbh_t *dbh, long attr, zval *return_valu
                        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