diff options
| author | Sascha Schumann <sas@php.net> | 2000-05-23 09:33:51 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-05-23 09:33:51 +0000 |
| commit | 4686a3b50ee86aa25e341aaa45376e637a42330f (patch) | |
| tree | 97b595a50dd094da01ad76eb628318dc120eac7a /ext/cpdf/cpdf.c | |
| parent | 0236982d6d9fb6c5187b2475c2e19245ac22a63a (diff) | |
| download | php-git-4686a3b50ee86aa25e341aaa45376e637a42330f.tar.gz | |
Use #ifdef COMPILE_DL_EXTNAME solely.
Diffstat (limited to 'ext/cpdf/cpdf.c')
| -rw-r--r-- | ext/cpdf/cpdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/cpdf/cpdf.c b/ext/cpdf/cpdf.c index 1e0f5cebd7..479109ca4c 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 defined(COMPILE_DL) || defined(COMPILE_DL_CPDF) +#ifdef COMPILE_DL_CPDF #include "dl/phpdl.h" ZEND_GET_MODULE(cpdf) #endif |
