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/msql/php_msql.c | |
parent | 0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff) | |
download | php-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz |
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/msql/php_msql.c')
-rw-r--r-- | ext/msql/php_msql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/msql/php_msql.c b/ext/msql/php_msql.c index 1853726568..dab1171a25 100644 --- a/ext/msql/php_msql.c +++ b/ext/msql/php_msql.c @@ -19,7 +19,7 @@ /* $Id$ */ #include "php.h" -#if defined(COMPILE_DL) || defined(COMPILE_DL_MSQL) +#ifdef COMPILE_DL_MSQL #include "dl/phpdl.h" #include "functions/dl.h" #endif @@ -107,7 +107,7 @@ zend_module_entry msql_module_entry = { }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_MSQL) +#ifdef COMPILE_DL_MSQL ZEND_GET_MODULE(msql) #endif |