diff options
Diffstat (limited to 'ext/aspell/aspell.c')
-rw-r--r-- | ext/aspell/aspell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/aspell/aspell.c b/ext/aspell/aspell.c index 5413657248..41b9f3f1b7 100644 --- a/ext/aspell/aspell.c +++ b/ext/aspell/aspell.c @@ -20,7 +20,7 @@ #include "php.h" -#if defined(COMPILE_DL) || defined(COMPILE_DL_ASPELL) +#ifdef COMPILE_DL_ASPELL #include "phpdl.h" #endif #include <stdlib.h> @@ -48,7 +48,7 @@ zend_module_entry aspell_module_entry = { }; -#if defined(COMPILE_DL) || defined(COMPILE_DL_ASPELL) +#ifdef COMPILE_DL_ASPELL ZEND_GET_MODULE(aspell) #endif |