From ed49eadb6a4f7d6a9333f85b788415087f34ac83 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 19 Jan 1998 18:35:54 +0000 Subject: [PATCH] Minor tweaks and fixes for cygwin32. --- XGL/xglUtils.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 { -- 2.39.2