]> git.mxchange.org Git - simgear.git/commitdiff
Minor tweaks and fixes for cygwin32.
authorcurt <curt>
Mon, 19 Jan 1998 18:35:54 +0000 (18:35 +0000)
committercurt <curt>
Mon, 19 Jan 1998 18:35:54 +0000 (18:35 +0000)
XGL/xglUtils.c

index 3f4f452e5841b1f040891c7273401ee74e35d0b1..6be1e6fa7dafa1411bbac52325748b692f3e2ef7 100644 (file)
 #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
 {