diff options
author | Sascha Schumann <sas@php.net> | 2000-01-12 19:56:12 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-01-12 19:56:12 +0000 |
commit | c658fc5cbdede7c8d11c7bf7eb84b342ae34c2e3 (patch) | |
tree | 27da995fe9ab1f132ac468fa8a68ade8364a1d5b | |
parent | bf7b292db9dff978e054215b61e3a0c4ba4f72c1 (diff) | |
download | php-git-c658fc5cbdede7c8d11c7bf7eb84b342ae34c2e3.tar.gz |
Only suppress including dlfcn.h when we are in PHP.
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 760f9794b1..0cd1b27cb0 100644 --- a/configure.in +++ b/configure.in @@ -788,12 +788,12 @@ fi # if test -d TSRM; then - echo '#include "../php_config.h"' > TSRM/tsrm-config.h + echo '#include "../php_config.h"' > TSRM/tsrm_config.h fi cat >Zend/zend_config.h <<FEO #include "../php_config.h" -#ifdef APACHE +#if defined(APACHE) && defined(PHP_API_VERSION) #undef HAVE_DLFCN_H #endif FEO |