diff options
Diffstat (limited to 'ext/db/db.c')
-rw-r--r-- | ext/db/db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/db/db.c b/ext/db/db.c index 607c5d861a..07cdefc5ba 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -19,7 +19,7 @@ /* $Id$ */ #define IS_EXT_MODULE -#if defined(COMPILE_DL) || defined(COMPILE_DL_DB) +#ifdef COMPILE_DL_DB # include "dl/phpdl.h" #endif @@ -1172,7 +1172,7 @@ zend_module_entry dbm_module_entry = { "db", dbm_functions, PHP_MINIT(db), PHP_MSHUTDOWN(db), PHP_RINIT(db), NULL, PHP_MINFO(db), STANDARD_MODULE_PROPERTIES }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_DB) +#ifdef COMPILE_DL_DB ZEND_GET_MODULE(dbm) #endif |