From: curt Date: Mon, 19 Jan 1998 18:35:54 +0000 (+0000) Subject: Minor tweaks and fixes for cygwin32. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ed49eadb6a4f7d6a9333f85b788415087f34ac83;p=simgear.git Minor tweaks and fixes for cygwin32. --- diff --git a/XGL/xglUtils.c b/XGL/xglUtils.c index 3f4f452e..6be1e6fa 100644 --- a/XGL/xglUtils.c +++ b/XGL/xglUtils.c @@ -20,7 +20,12 @@ #endif int xglTraceOn = TRUE ; -FILE *xglTraceFd = stdout ; +#ifndef __CYGWIN32__ + FILE *xglTraceFd = stdout ; +#else /* __CYGWIN32__ */ + /* Bail for now, we just want it to compile I guess */ + FILE *xglTraceFd = NULL; +#endif /* __CYGWIN32 */ struct GLenumLookup {