mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
mesa: remove OPENSTEP stuff
Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
32577fc0ad
commit
2671b576b2
2 changed files with 2 additions and 6 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ extern "C" {
|
|||
/**
|
||||
* Disable assorted warnings
|
||||
*/
|
||||
#if !defined(OPENSTEP) && (defined(_WIN32) && !defined(__CYGWIN__))
|
||||
#if defined(_WIN32) && !defined(__CYGWIN__)
|
||||
# if !defined(__GNUC__) /* mingw environment */
|
||||
# pragma warning( disable : 4068 ) /* unknown pragma */
|
||||
# pragma warning( disable : 4710 ) /* function 'foo' not inlined */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue