From 625bf83ef09c04debd1af98e4593f615a9720ebb Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 14 Jan 2010 19:44:54 +0000 Subject: [PATCH] - fix build --- ext/standard/crypt_sha256.c | 6 ++---- ext/standard/crypt_sha512.c | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/ext/standard/crypt_sha256.c b/ext/standard/crypt_sha256.c index a62aee42c8..c33855f5f5 100644 --- a/ext/standard/crypt_sha256.c +++ b/ext/standard/crypt_sha256.c @@ -2,10 +2,8 @@ Released into the Public Domain by Ulrich Drepper . */ /* Windows VC++ port by Pierre Joye */ -#ifndef PHP_WIN32 -# include "php.h" -# include "php_main.h" -#endif +#include "php.h" +#include "php_main.h" #include #include diff --git a/ext/standard/crypt_sha512.c b/ext/standard/crypt_sha512.c index 67c5a54e50..f32e4a0f8a 100644 --- a/ext/standard/crypt_sha512.c +++ b/ext/standard/crypt_sha512.c @@ -2,10 +2,8 @@ Released into the Public Domain by Ulrich Drepper . */ /* Windows VC++ port by Pierre Joye */ -#ifndef PHP_WIN32 -# include "php.h" -# include "php_main.h" -#endif +#include "php.h" +#include "php_main.h" #include #include -- 2.50.1