diff options
Diffstat (limited to 'ext/icap')
-rw-r--r-- | ext/icap/php_icap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c index c5b4037d74..28d3aa56f4 100644 --- a/ext/icap/php_icap.c +++ b/ext/icap/php_icap.c @@ -36,7 +36,7 @@ #include "php.h" -#if COMPILE_DL +#if defined(COMPILE_DL) || defined(COMPILE_DL_ICAP) #include "dl/phpdl.h" #endif @@ -100,7 +100,7 @@ zend_module_entry php_icap_module_entry = { }; -#if COMPILE_DL +#if defined(COMPILE_DL) || defined(COMPILE_DL_ICAP) ZEND_GET_MODULE(php_icap) #endif |