From: Dale Weiler Date: Fri, 11 Oct 2013 08:58:49 +0000 (-0400) Subject: Make it compile with mingw32 again X-Git-Tag: 0.3.5~35^2~2^2~6 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=34c18ab860ceb47e67d2e362669e3afea1a6e25d;p=xonotic%2Fgmqcc.git Make it compile with mingw32 again --- diff --git a/ansi.c b/ansi.c index 52399df..e69e9e8 100644 --- a/ansi.c +++ b/ansi.c @@ -157,7 +157,16 @@ long platform_ftell(FILE *stream) { } int platform_mkdir(const char *path, int mode) { + /* + * For some reason mingw32 just doesn't have a correct mkdir impl + * so we handle that here. + */ +# ifdef _WIN32 + (void)mode; + return mkdir(path); +# else return mkdir(path, mode); +# endif /*!_WIN32*/ } DIR *platform_opendir(const char *path) { diff --git a/ftepp.c b/ftepp.c index e3cbb0d..2a19130 100644 --- a/ftepp.c +++ b/ftepp.c @@ -23,12 +23,14 @@ */ #include #include +#include #include "gmqcc.h" #include "lexer.h" #include "platform.h" #define HT_MACROS 1024 + typedef struct { bool on; bool was_on;