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 /TSRM | |
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 'TSRM')
-rw-r--r-- | TSRM/TSRM.h | 2 | ||||
-rw-r--r-- | TSRM/tsrm_config_common.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h index 87f5ad94b7..d33240fa1e 100644 --- a/TSRM/TSRM.h +++ b/TSRM/TSRM.h @@ -15,7 +15,7 @@ /* #ifndef WIN32 */ #if !defined(WIN32) && !defined(NETWARE) -# include "tsrm_config.h" +# include <tsrm_config.h> #endif #ifdef WIN32 diff --git a/TSRM/tsrm_config_common.h b/TSRM/tsrm_config_common.h index 9930a51a69..a029bfaa96 100644 --- a/TSRM/tsrm_config_common.h +++ b/TSRM/tsrm_config_common.h @@ -10,7 +10,7 @@ #elif defined(NETWARE) # include "tsrm_config.nw.h" #else -# include "tsrm_config.h" +# include <tsrm_config.h> # include <sys/param.h> #endif |