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 /Zend/zend.h | |
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 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index b5aee896fb..a52dfcc16a 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -48,10 +48,10 @@ # include "acconfig.h" # define ZEND_PATHS_SEPARATOR ';' #elif defined(__riscos__) -# include "zend_config.h" +# include <zend_config.h> # define ZEND_PATHS_SEPARATOR ';' #else -# include "zend_config.h" +# include <zend_config.h> # define ZEND_PATHS_SEPARATOR ':' #endif |