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/oracle/oracle.c | |
parent | 0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff) | |
download | php-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz |
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index d3aa76e8f4..d1cdb2b6f3 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -25,7 +25,7 @@ #define HAS_OLOG 1 -#if defined(COMPILE_DL) || defined(COMPILE_DL_ORACLE) +#ifdef COMPILE_DL_ORACLE # include "dl/phpdl.h" #endif @@ -181,7 +181,7 @@ static const text *ora_func_tab[] = /* 61, 62 */ (text *) "unused", (text *) "OBNDRA" }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_ORACLE) +#ifdef COMPILE_DL_ORACLE ZEND_GET_MODULE(oracle) #endif |