[Plib-cvs] plib/demos/ttt3d/src p3d.h,1.3,1.4 status.cxx,1.4,1.5 ttt3d.cxx,1.5,1.6
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2002-08-31 08:07:22
|
Update of /cvsroot/plib/plib/demos/ttt3d/src In directory usw-pr-cvs1:/tmp/cvs-serv28767 Modified Files: p3d.h status.cxx ttt3d.cxx Log Message: Change from Norman Vine: Include changes Index: p3d.h =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/src/p3d.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- p3d.h 18 Aug 2002 00:09:46 -0000 1.3 +++ p3d.h 31 Aug 2002 08:05:49 -0000 1.4 @@ -33,10 +33,6 @@ #endif #include <math.h> -#ifdef WIN32 -#include <windows.h> -#endif - #include <plib/ssg.h> #include <GL/glut.h> Index: status.cxx =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/src/status.cxx,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- status.cxx 18 Aug 2002 00:09:46 -0000 1.4 +++ status.cxx 31 Aug 2002 08:05:49 -0000 1.5 @@ -23,11 +23,6 @@ #include "p3d.h" -#ifdef WIN32 -#include <windows.h> -#else -#include <unistd.h> -#endif #include <stdarg.h> #define MAX_STRING 30 Index: ttt3d.cxx =================================================================== RCS file: /cvsroot/plib/plib/demos/ttt3d/src/ttt3d.cxx,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- ttt3d.cxx 30 Aug 2002 14:05:59 -0000 1.5 +++ ttt3d.cxx 31 Aug 2002 08:05:49 -0000 1.6 @@ -25,7 +25,7 @@ #include "p3d.h" #include <signal.h> -#ifdef _WIN32 +#if defined(WIN32) && !defined(__CYGWIN__) # include <io.h> # include <direct.h> |