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 /include | |
parent | f2fc19d7851526e4fd4de73b4b9b053a6a87153d (diff) |
replaced __CYGWIN32__ with __CYGWIN__
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/gl.h | 6 | ||||
-rw-r--r-- | include/GL/glext.h | 2 | ||||
-rw-r--r-- | include/GL/glu.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 9ade786afd5..63b1004bf1a 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,4 +1,4 @@ -/* $Id: gl.h,v 1.40 2000/05/22 16:22:47 brianp Exp $ */ +/* $Id: gl.h,v 1.41 2000/05/22 19:40:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -48,7 +48,7 @@ #define __WIN32__ #endif -#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__)) +#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN__)) # if defined(_MSC_VER) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ # define GLAPI __declspec(dllexport) # elif defined(_MSC_VER) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ @@ -61,7 +61,7 @@ /* non-Windows compilation */ # define GLAPI extern # define GLAPIENTRY -#endif /* WIN32 / CYGWIN32 bracket */ +#endif /* WIN32 / CYGWIN bracket */ #if defined(_WIN32) && !defined(_WINGDI_) && !defined(_GNU_H_WINDOWS32_DEFINES) && !defined(OPENSTEP) #include <gl/mesa_wgl.h> diff --git a/include/GL/glext.h b/include/GL/glext.h index 74a4448a9e8..0eb4ca49a0b 100644 --- a/include/GL/glext.h +++ b/include/GL/glext.h @@ -15,7 +15,7 @@ extern "C" { #endif -#if defined(_WIN32) && !defined(__CYGWIN32__) +#if defined(_WIN32) && !defined(__CYGWIN__) #define WIN32_LEAN_AND_MEAN 1 #include <windows.h> #endif diff --git a/include/GL/glu.h b/include/GL/glu.h index 249e37d16c5..c03f8cb9517 100644 --- a/include/GL/glu.h +++ b/include/GL/glu.h @@ -1,4 +1,4 @@ -/* $Id: glu.h,v 1.20 2000/05/22 16:21:27 brianp Exp $ */ +/* $Id: glu.h,v 1.21 2000/05/22 19:40:43 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -39,7 +39,7 @@ extern "C" { /* to facilitate clean DLL building ... */ -#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN32__)) +#if !defined(OPENSTEP) && (defined(__WIN32__) || defined(__CYGWIN__)) # if defined(_MSC_VER) && defined(BUILD_GLU32) /* tag specify we're building mesa as a DLL */ # define GLUAPI __declspec(dllexport) # elif defined(_MSC_VER) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ @@ -53,7 +53,7 @@ extern "C" { # define GLUAPI extern # define GLCALLBACK # define GLCALLBACKP * -#endif /* WIN32 / CYGWIN32 bracket */ +#endif /* WIN32 / CYGWIN bracket */ /* compatability guard so we don't need to change client code */ #if defined(_WIN32) && !defined(_WINDEF_) && !defined(_GNU_H_WINDOWS32_BASE) && !defined(OPENSTEP) |