summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2004-04-11 22:22:23 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2004-04-11 22:22:23 +0000
commit7873f856848ce5489f05c79581e2439aaff4bae7 (patch)
tree5de2a29bd37f152dcf3a2e4e538b378d9f268409 /src/mesa/main
parent2db8fe2906ee3942dcd18d86eba2841e6539018e (diff)
build fix for VMS
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/imports.h2
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))