summaryrefslogtreecommitdiff
path: root/ext/cpdf
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-02 00:44:35 +0000
committerSascha Schumann <sas@php.net>2000-05-02 00:44:35 +0000
commitfe50664d4d0d5fad0e7ca52a42fe1d96461a4f31 (patch)
tree478da972aefeecd1d09c49a6a05a089ae80bfe90 /ext/cpdf
parent0d383d9373e6764d4f36cfce41cb8a610766e9b6 (diff)
downloadphp-git-fe50664d4d0d5fad0e7ca52a42fe1d96461a4f31.tar.gz
#if COMPILE_DL
becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
Diffstat (limited to 'ext/cpdf')
-rw-r--r--ext/cpdf/cpdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cpdf/cpdf.c b/ext/cpdf/cpdf.c
index ebaedb99cd..1e0f5cebd7 100644
--- a/ext/cpdf/cpdf.c
+++ b/ext/cpdf/cpdf.c
@@ -158,7 +158,7 @@ zend_module_entry cpdf_module_entry = {
"cpdf", cpdf_functions, PHP_MINIT(cpdf), PHP_MSHUTDOWN(cpdf), PHP_RINIT(cpdf), NULL, PHP_MINFO(cpdf), STANDARD_MODULE_PROPERTIES
};
-#if COMPILE_DL
+#if defined(COMPILE_DL) || defined(COMPILE_DL_CPDF)
#include "dl/phpdl.h"
ZEND_GET_MODULE(cpdf)
#endif