From ff8845de523d1a1a29381bf73e64cef7b78fbd49 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 13 May 1998 18:24:49 +0000 Subject: [PATCH] Better handling of WIN32 environments. --- XGL/xglUtils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/XGL/xglUtils.c b/XGL/xglUtils.c index e727cea8..fe14d636 100644 --- a/XGL/xglUtils.c +++ b/XGL/xglUtils.c @@ -20,12 +20,12 @@ #endif int xglTraceOn = TRUE ; -#ifndef __CYGWIN32__ +#ifndef WIN32 FILE *xglTraceFd = stdout ; -#else /* __CYGWIN32__ */ +#else /* WIN32 */ /* Bail for now, we just want it to compile I guess */ FILE *xglTraceFd = NULL; -#endif /* __CYGWIN32 */ +#endif /* WIN32 */ struct GLenumLookup { -- 2.39.5