summaryrefslogtreecommitdiff
path: root/ext/mcal/php_mcal.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-23 09:33:51 +0000
committerSascha Schumann <sas@php.net>2000-05-23 09:33:51 +0000
commit4686a3b50ee86aa25e341aaa45376e637a42330f (patch)
tree97b595a50dd094da01ad76eb628318dc120eac7a /ext/mcal/php_mcal.c
parent0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff)
downloadphp-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/mcal/php_mcal.c')
-rw-r--r--ext/mcal/php_mcal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c
index aee722c970..74934b1198 100644
--- a/ext/mcal/php_mcal.c
+++ b/ext/mcal/php_mcal.c
@@ -36,7 +36,7 @@
#include "php.h"
-#if defined(COMPILE_DL) || defined(COMPILE_DL_MCAL)
+#ifdef COMPILE_DL_MCAL
#include "dl/phpdl.h"
#endif
@@ -127,7 +127,7 @@ zend_module_entry php_mcal_module_entry = {
"mcal", mcal_functions, PHP_MINIT(mcal), NULL, NULL, NULL, PHP_MINFO(mcal), STANDARD_MODULE_PROPERTIES
};
-#if defined(COMPILE_DL) || defined(COMPILE_DL_MCAL)
+#ifdef COMPILE_DL_MCAL
ZEND_GET_MODULE(php_mcal)
#endif