summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/oci8/config.m42
-rw-r--r--ext/oci8/oci8.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/oci8/config.m4 b/ext/oci8/config.m4
index d153f18b3e..240388aa44 100644
--- a/ext/oci8/config.m4
+++ b/ext/oci8/config.m4
@@ -143,7 +143,7 @@ if test "$PHP_OCI8" != "no"; then
dnl
PHP_CHECK_LIBRARY(clntsh, OCICollAssign,
[
- AC_DEFINE(HAVE_OCI8_COLLECTIONS,1,[ ])
+ AC_DEFINE(PHP_OCI8_HAVE_COLLECTIONS,1,[ ])
], [], [
-L$OCI8_DIR/lib $OCI8_SHARED_LIBADD
])
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 88240bad26..eb3a16d9ec 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -803,7 +803,7 @@ PHP_MINFO_FUNCTION(oci)
php_info_print_table_row(2, "Temporary Lob support", "disabled" );
#endif
-#ifdef HAVE_OCI8_COLLECTIONS
+#ifdef PHP_OCI8_HAVE_COLLECTIONS
php_info_print_table_row(2, "Collections support", "enabled" );
#else
php_info_print_table_row(2, "Collections support", "disabled" );