diff options
| author | foobar <sniper@php.net> | 2005-01-09 21:05:06 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2005-01-09 21:05:06 +0000 |
| commit | a139dbf9ccf47a99b449c7bdcdfb846563bb7cec (patch) | |
| tree | fcb22e91ef5c5e71fc323ef1d16c156375467338 /configure.in | |
| parent | 37d3ea836ec665500e6b61d35212b6d168d2d218 (diff) | |
| download | php-git-a139dbf9ccf47a99b449c7bdcdfb846563bb7cec.tar.gz | |
- Fix outside-source-tree builds. Always include generated header files
with #include <some_header.h> to make sure the correct file is used.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index cbcfd1259a..28915454d0 100644 --- a/configure.in +++ b/configure.in @@ -1338,12 +1338,12 @@ fi # test -d TSRM || $php_shtool mkdir TSRM -echo '#include "../main/php_config.h"' > TSRM/tsrm_config.h +echo '#include <../main/php_config.h>' > TSRM/tsrm_config.h test -d Zend || $php_shtool mkdir Zend cat >Zend/zend_config.h <<FEO -#include "../main/php_config.h" +#include <../main/php_config.h> #if defined(APACHE) && defined(PHP_API_VERSION) #undef HAVE_DLFCN_H #endif |
