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/odbc | |
| parent | 0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff) | |
| download | php-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz | |
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/odbc')
| -rw-r--r-- | ext/odbc/php_odbc.c | 4 | ||||
| -rw-r--r-- | ext/odbc/velocis.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 79c533ddca..6c65216b53 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -20,7 +20,7 @@ /* $Id$ */ -#if defined(COMPILE_DL) || defined(COMPILE_DL_ODBC) +#ifdef COMPILE_DL_ODBC #include "dl/phpdl.h" #endif @@ -133,7 +133,7 @@ int odbc_globals_id; ZEND_API php_odbc_globals odbc_globals; #endif -#if defined(COMPILE_DL) || defined(COMPILE_DL_ODBC) +#ifdef COMPILE_DL_ODBC ZEND_GET_MODULE(odbc) #endif diff --git a/ext/odbc/velocis.c b/ext/odbc/velocis.c index 301f117373..6c67a524e5 100644 --- a/ext/odbc/velocis.c +++ b/ext/odbc/velocis.c @@ -66,7 +66,7 @@ zend_module_entry velocis_module_entry = { }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_ODBC) +#ifdef COMPILE_DL_ODBC ZEND_GET_MODULE(velocis) #endif |
