diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2005-03-16 22:00:07 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2005-03-16 22:00:07 +0000 |
commit | effa111c5efb8d4a514af7047d680c01efc4aa9e (patch) | |
tree | 3aadaea7abe31ad0dfd88adc9665bf99fa9cafe6 | |
parent | d247e074a7d33c9dcd32b335fcac859fc722fb51 (diff) | |
download | php-git-effa111c5efb8d4a514af7047d680c01efc4aa9e.tar.gz |
Fix Jani breakage
-rw-r--r-- | TSRM/TSRM.h | 2 | ||||
-rw-r--r-- | TSRM/tsrm_config_common.h | 2 | ||||
-rw-r--r-- | ext/soap/php_sdl.c | 2 | ||||
-rw-r--r-- | main/php.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h index a66353b88f..5f9c9dd3f3 100644 --- a/TSRM/TSRM.h +++ b/TSRM/TSRM.h @@ -15,7 +15,7 @@ /* #ifndef WIN32 */ #ifndef WIN32 -# 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 bdd171e619..58497db686 100644 --- a/TSRM/tsrm_config_common.h +++ b/TSRM/tsrm_config_common.h @@ -8,7 +8,7 @@ #ifdef TSRM_WIN32 # include "tsrm_config.w32.h" #else -# include <tsrm_config.h> +# include "tsrm_config.h" # include <sys/param.h> #endif diff --git a/ext/soap/php_sdl.c b/ext/soap/php_sdl.c index 9b526110e8..319ef48872 100644 --- a/ext/soap/php_sdl.c +++ b/ext/soap/php_sdl.c @@ -24,7 +24,7 @@ #include "libxml/uri.h" #include "ext/standard/md5.h" -#include "tsrm_virtual_cwd.h" +#include "../../TSRM/tsrm_virtual_cwd.h" #include <sys/types.h> #include <sys/stat.h> diff --git a/main/php.h b/main/php.h index 6d58825b6e..7f912b3023 100644 --- a/main/php.h +++ b/main/php.h @@ -397,7 +397,7 @@ END_EXTERN_C() /* Virtual current working directory support */ -#include "tsrm_virtual_cwd.h" +#include "../TSRM/tsrm_virtual_cwd.h" #include "zend_constants.h" |