diff options
author | Brian Paul <brianp@vmware.com> | 2013-11-04 17:47:19 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2013-11-04 18:09:57 -0700 |
commit | 2671b576b22614d1b424a1fe70f84ee6c3920d13 (patch) | |
tree | 1bb807fb8955937d480b623f846b048f2672bec3 /include | |
parent | 32577fc0adec86557c53ced8fb13dd5de76e58e0 (diff) | |
download | mesa-2671b576b22614d1b424a1fe70f84ee6c3920d13.tar.gz mesa-2671b576b22614d1b424a1fe70f84ee6c3920d13.tar.bz2 mesa-2671b576b22614d1b424a1fe70f84ee6c3920d13.zip |
mesa: remove OPENSTEP stuff
Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/gl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 1d21df75db9..d0710bac860 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -40,15 +40,11 @@ #include <stdlib.h> /* to get some BeOS-isms */ #endif -#if !defined(OPENSTEP) && (defined(NeXT) || defined(NeXT_PDO)) -#define OPENSTEP -#endif - #if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) #define __WIN32__ #endif -#if !defined(OPENSTEP) && (defined(__WIN32__) && !defined(__CYGWIN__)) +#if defined(__WIN32__) && !defined(__CYGWIN__) # if (defined(_MSC_VER) || defined(__MINGW32__)) && defined(BUILD_GL32) /* tag specify we're building mesa as a DLL */ # define GLAPI __declspec(dllexport) # elif (defined(_MSC_VER) || defined(__MINGW32__)) && defined(_DLL) /* tag specifying we're building for DLL runtime support */ |