diff options
| author | foobar <sniper@php.net> | 2004-01-15 06:30:23 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2004-01-15 06:30:23 +0000 |
| commit | ad11617f293441db4870e19255dc25f348163904 (patch) | |
| tree | da1e30f21b400bcf742ea2583c11b939bfdd44ff | |
| parent | 124e6c8b6dc63c799a36a1300efdcfbff5b2faa9 (diff) | |
| download | php-git-ad11617f293441db4870e19255dc25f348163904.tar.gz | |
Fix typo
| -rw-r--r-- | ext/oci8/config.m4 | 2 | ||||
| -rw-r--r-- | ext/oci8/oci8.c | 2 |
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" ); |
