summaryrefslogtreecommitdiff
path: root/ext/icap/php_icap.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/icap/php_icap.c
parent0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff)
downloadphp-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/icap/php_icap.c')
-rw-r--r--ext/icap/php_icap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c
index 5335a93636..e415d38558 100644
--- a/ext/icap/php_icap.c
+++ b/ext/icap/php_icap.c
@@ -36,7 +36,7 @@
#include "php.h"
-#if defined(COMPILE_DL) || defined(COMPILE_DL_ICAP)
+#ifdef COMPILE_DL_ICAP
#include "dl/phpdl.h"
#endif
@@ -101,7 +101,7 @@ zend_module_entry php_icap_module_entry = {
};
-#if defined(COMPILE_DL) || defined(COMPILE_DL_ICAP)
+#ifdef COMPILE_DL_ICAP
ZEND_GET_MODULE(php_icap)
#endif