diff options
author | Sascha Schumann <sas@php.net> | 2000-05-23 09:33:51 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-05-23 09:33:51 +0000 |
commit | 4686a3b50ee86aa25e341aaa45376e637a42330f (patch) | |
tree | 97b595a50dd094da01ad76eb628318dc120eac7a /ext/interbase/interbase.c | |
parent | 0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff) | |
download | php-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz |
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/interbase/interbase.c')
-rw-r--r-- | ext/interbase/interbase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index 223aed1017..94c8c4d179 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -108,7 +108,7 @@ zend_module_entry ibase_module_entry = STANDARD_MODULE_PROPERTIES }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_INTERBASE) +#ifdef COMPILE_DL_INTERBASE #include "dl/phpdl.h" ZEND_GET_MODULE(ibase) @@ -526,7 +526,7 @@ PHP_MINFO_FUNCTION(ibase) php_info_print_table_start(); php_info_print_table_row(2, "Interbase Support", "enabled"); php_info_print_table_row(2, "Revision", "$Revision$"); -#if defined(COMPILE_DL) || defined(COMPILE_DL_INTERBASE) +#ifdef COMPILE_DL_INTERBASE php_info_print_table_row(2, "Dynamic Module", "yes"); #endif php_info_print_table_row(2, "Allow Persistent Links", (IBG(allow_persistent)?"Yes":"No") ); |