From af567e7d54e5cf15954bd83c0af443b7f6ee30a5 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 4 May 2010 09:51:03 +0000 Subject: [PATCH] - fix build --- sapi/apache2handler/sapi_apache2.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index f5656bdc4f..7efa32d651 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -53,8 +53,10 @@ #include "php_apache.h" -#if _MSC_VER <= 1300 -# include "win32/php_strtoi64.h" +#ifdef PHP_WIN32 +# if _MSC_VER <= 1300 +# include "win32/php_strtoi64.h" +# endif #endif /* UnixWare and Netware define shutdown to _shutdown, which causes problems later @@ -124,7 +126,7 @@ php_apache_sapi_header_handler(sapi_header_struct *sapi_header, sapi_header_op_e } ctx->content_type = estrdup(val); } else if (!strcasecmp(sapi_header->header, "content-length")) { -#ifdef PHP_WINDOWS +#ifdef PHP_WIN32 # ifdef APR_HAS_LARGE_FILES ap_set_content_length(ctx->r, (apr_off_t) _strtoui64(val, (char **)NULL, 10)); # else -- 2.40.0