diff options
author | Brian Paul <[email protected]> | 2000-05-22 19:40:43 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-22 19:40:43 +0000 |
commit | 8da58f31846bd119070af78fac340a3e5da4f056 (patch) | |
tree | e73550a3e3820a802e07b8da867d8d6fdf31c022 /src/glu/mesa/gluP.h | |
parent | f2fc19d7851526e4fd4de73b4b9b053a6a87153d (diff) |
replaced __CYGWIN32__ with __CYGWIN__
Diffstat (limited to 'src/glu/mesa/gluP.h')
-rw-r--r-- | src/glu/mesa/gluP.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/glu/mesa/gluP.h b/src/glu/mesa/gluP.h index 995dd4571fa..89bfa9c92cd 100644 --- a/src/glu/mesa/gluP.h +++ b/src/glu/mesa/gluP.h @@ -1,4 +1,4 @@ -/* $Id: gluP.h,v 1.3 2000/05/22 16:25:37 brianp Exp $ */ +/* $Id: gluP.h,v 1.4 2000/05/22 19:41:11 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -23,6 +23,9 @@ /* * $Log: gluP.h,v $ + * Revision 1.4 2000/05/22 19:41:11 brianp + * replaced __CYGWIN32__ with __CYGWIN__ + * * Revision 1.3 2000/05/22 16:25:37 brianp * added some Window-isms formerly in gl.h * @@ -75,7 +78,7 @@ # define __WIN32__ #endif -#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__)) +#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN__)) # pragma warning( disable : 4068 ) /* unknown pragma */ # pragma warning( disable : 4710 ) /* function 'foo' not inlined */ # pragma warning( disable : 4711 ) /* function 'foo' selected for automatic inline expansion */ @@ -101,7 +104,7 @@ # define GLAPIENTRYP __stdcall * # define GLCALLBACK __stdcall # define GLCALLBACKP __stdcall * -# if defined(__CYGWIN32__) +# if defined(__CYGWIN__) # define GLCALLBACKPCAST * # else # define GLCALLBACKPCAST __stdcall * @@ -118,7 +121,7 @@ # define GLCALLBACKPCAST * # define GLWINAPI # define GLWINAPIV -#endif /* WIN32 / CYGWIN32 bracket */ +#endif /* WIN32 / CYGWIN bracket */ /* compatability guard so we don't need to change client code */ |