From: Guus Sliepen Date: Sat, 21 Nov 2015 21:40:42 +0000 (+0100) Subject: Don't try to #include on Mac OS X. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=aac82ff2a745d661535ac7620ceff78c9599b5c3;p=quix0rs-blobwars.git Don't try to #include on Mac OS X. It's a bit of a hassle to get gettext going on Mac OS X, so skip it for now. --- diff --git a/src/headers.h b/src/headers.h index 2c5396d..389b34b 100644 --- a/src/headers.h +++ b/src/headers.h @@ -46,7 +46,7 @@ extern DECLSPEC int SDLCALL SDL_GetGamma(float *red, float *green, float *blue); #include "SDL2/SDL_net.h" #endif -#ifndef WIN32 +#if !defined(_WIN32) && !defined(__APPLE__) #include #define _(string) gettext(string) #else