From e2134bfe38938212553d2a67ad0271a8eb0b9dba Mon Sep 17 00:00:00 2001 From: Eric Sandall Date: Fri, 1 Aug 2003 15:45:56 +0000 Subject: [PATCH] src/freeglut_initial.c:91 Added check for SOLARIS OS git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@148 7f0cb862-5218-0410-a997-914c9d46530a --- ChangeLog | 7 +++++++ src/freeglut_internal.h | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0f1dc03..646a503 100644 --- a/ChangeLog +++ b/ChangeLog @@ -247,3 +247,10 @@ October 24, 2002: (93) doc/Makefile.am:4 Removed trailing backslash and added an empty last line (94) src/freeglut_window.c Windowing fixes from John F. + + +******************************************************************************************* +* Changes on 23 July 2003 +******************************************************************************************* + +(95) src/freeglut_initial.c:91 Added check for SOLARIS OS diff --git a/src/freeglut_internal.h b/src/freeglut_internal.h index 4564157..796a7d7 100644 --- a/src/freeglut_internal.h +++ b/src/freeglut_internal.h @@ -90,7 +90,9 @@ #include #ifndef __sgi - #include + #ifndef SOLARIS + #include + #endif #endif #endif -- 1.7.10.4