diff options
author | foobar <sniper@php.net> | 2005-01-14 20:44:28 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-01-14 20:44:28 +0000 |
commit | 14058c83e6a9332a4ae393c030d3198d02b35d51 (patch) | |
tree | ce118836957da57abf89cb4575992a2817b5f119 | |
parent | 9de934c2108649725c7069934f6ca5d6ada6d1c3 (diff) | |
download | php-git-14058c83e6a9332a4ae393c030d3198d02b35d51.tar.gz |
- Fix another generated header include
-rw-r--r-- | main/php.h | 2 | ||||
-rw-r--r-- | sapi/apache_hooks/php_apache.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h index 9e453eedb3..c650d783e8 100644 --- a/main/php.h +++ b/main/php.h @@ -97,7 +97,7 @@ #endif #if HAVE_BUILD_DEFS_H -#include "build-defs.h" +#include <build-defs.h> #endif /* diff --git a/sapi/apache_hooks/php_apache.c b/sapi/apache_hooks/php_apache.c index acbbee6e5d..44f54c3637 100644 --- a/sapi/apache_hooks/php_apache.c +++ b/sapi/apache_hooks/php_apache.c @@ -25,7 +25,7 @@ #include "zend.h" #include "ap_compat.h" #else -#include "build-defs.h" +#include <build-defs.h> #endif #ifdef ZTS |