diff options
author | Alan Hourihane <[email protected]> | 2004-04-11 22:22:23 +0000 |
---|---|---|
committer | Alan Hourihane <[email protected]> | 2004-04-11 22:22:23 +0000 |
commit | 7873f856848ce5489f05c79581e2439aaff4bae7 (patch) | |
tree | 5de2a29bd37f152dcf3a2e4e538b378d9f268409 /src/mesa/main/imports.h | |
parent | 2db8fe2906ee3942dcd18d86eba2841e6539018e (diff) |
build fix for VMS
Diffstat (limited to 'src/mesa/main/imports.h')
-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 5cdac06ba82..94fd5e55bb2 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)) |