summaryrefslogtreecommitdiff
path: root/ext/aspell/aspell.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/aspell/aspell.c
parent0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff)
downloadphp-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/aspell/aspell.c')
-rw-r--r--ext/aspell/aspell.c4
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