diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2004-04-11 22:22:46 +0000 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2004-04-11 22:22:46 +0000 |
commit | fc19af42cef0740d54379d0fb7c966fee185ee65 (patch) | |
tree | 436f150ac0796d0cf2d80e3ff0d408b724d6c91b | |
parent | 986197774978aaec7a703290748f031ccec58ff7 (diff) |
build fix for VMS
-rw-r--r-- | src/mesa/main/imports.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 5cdac06ba8..94fd5e55bb 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -307,7 +307,7 @@ static INLINE int IS_INF_OR_NAN( float x ) #define IS_INF_OR_NAN(x) (!isfinite(x)) #elif defined(finite) #define IS_INF_OR_NAN(x) (!finite(x)) -#elif __VMS +#elif defined(__VMS) #define IS_INF_OR_NAN(x) (!finite(x)) #elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define IS_INF_OR_NAN(x) (!isfinite(x)) |