diff options
author | Sascha Schumann <sas@php.net> | 2000-05-02 00:44:35 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-05-02 00:44:35 +0000 |
commit | fe50664d4d0d5fad0e7ca52a42fe1d96461a4f31 (patch) | |
tree | 478da972aefeecd1d09c49a6a05a089ae80bfe90 /ext/pcre/php_pcre.c | |
parent | 0d383d9373e6764d4f36cfce41cb8a610766e9b6 (diff) | |
download | php-git-fe50664d4d0d5fad0e7ca52a42fe1d96461a4f31.tar.gz |
#if COMPILE_DL
becomes
#if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
Diffstat (limited to 'ext/pcre/php_pcre.c')
-rw-r--r-- | ext/pcre/php_pcre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 54ca3b0d3a..09f1641047 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -1210,7 +1210,7 @@ zend_module_entry pcre_module_entry = { STANDARD_MODULE_PROPERTIES }; -#ifdef COMPILE_DL_PCRE +#if defined(COMPILE_DL) || defined(COMPILE_DL_PCRE) ZEND_GET_MODULE(pcre) #endif |