From e33dc625bcdf9b341aeed9937f5e974ddd5c4e1f Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Tue, 1 Sep 2015 22:44:56 +0000 Subject: [PATCH] =?utf8?q?[HHPCOMP]=20Fix=20headers=20inclusion=20on=20Mac?= =?utf8?q?OSX.=20This=20fixes=20hhpcomp=20build=20on=20MacOSX=20Patch=20by?= =?utf8?q?=20Nicolas=20Rouvi=C3=A8re?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit CORE-10084 #resolve #comment Committed in r68906. Thanks! svn path=/trunk/; revision=68906 --- reactos/tools/hhpcomp/chmc/chmc.c | 2 +- reactos/tools/hhpcomp/lzx_compress/lz_nonslide.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/hhpcomp/chmc/chmc.c b/reactos/tools/hhpcomp/chmc/chmc.c index a54fe26bc65..a131ae1f404 100644 --- a/reactos/tools/hhpcomp/chmc/chmc.c +++ b/reactos/tools/hhpcomp/chmc/chmc.c @@ -26,7 +26,7 @@ #include #include -#if defined(_WIN32) +#if defined(_WIN32) || defined(__APPLE__) #include #include #include diff --git a/reactos/tools/hhpcomp/lzx_compress/lz_nonslide.h b/reactos/tools/hhpcomp/lzx_compress/lz_nonslide.h index d6e28f20c30..829697f9116 100644 --- a/reactos/tools/hhpcomp/lzx_compress/lz_nonslide.h +++ b/reactos/tools/hhpcomp/lzx_compress/lz_nonslide.h @@ -16,7 +16,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#if defined(_WIN32) +#if defined(_WIN32) || defined(__APPLE__) typedef unsigned char u_char; #endif -- 2.17.1