diff options
author | Matt Turner <[email protected]> | 2012-08-22 18:44:54 -0700 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2012-11-16 10:01:46 +0100 |
commit | 1f82bf12edb37a91991fdae59cf0cc36c9f49278 (patch) | |
tree | 4db42cf2046e12cf55480276d74ca48f4177ec22 /src/mesa/main/compiler.h | |
parent | 900f5eb7a8b62f9dc50f3fb2739111c546baeaec (diff) |
Remove OpenVMS support
Not maintained since 2008. Doubtful that it's worked in quite a while.
Also see commit 32ac8cb05 which removed VMS stuff from Makefile in 2009.
Cc: Jouk Jansen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Andreas Boll <[email protected]>
Diffstat (limited to 'src/mesa/main/compiler.h')
-rw-r--r-- | src/mesa/main/compiler.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h index a8cddaf8fd7..b22b994857b 100644 --- a/src/mesa/main/compiler.h +++ b/src/mesa/main/compiler.h @@ -183,9 +183,7 @@ extern "C" { * Don't define it if using a newer Windows compiler. */ #ifndef __FUNCTION__ -# if defined(__VMS) -# define __FUNCTION__ "VMS$NL:" -# elif !defined(__GNUC__) && !defined(__xlC__) && \ +# if !defined(__GNUC__) && !defined(__xlC__) && \ (!defined(_MSC_VER) || _MSC_VER < 1300) # if (__STDC_VERSION__ >= 199901L) /* C99 */ || \ (defined(__SUNPRO_C) && defined(__C99FEATURES__)) @@ -363,7 +361,7 @@ static INLINE GLuint CPU_TO_LE32(GLuint x) defined(__arm__) || \ defined(__sh__) || defined(__m32r__) || \ (defined(__sun) && defined(_IEEE_754)) || \ - (defined(__alpha__) && (defined(__IEEE_FLOAT) || !defined(VMS))) + (defined(__alpha__) && defined(__IEEE_FLOAT)) #define USE_IEEE #define IEEE_ONE 0x3f800000 #endif |