From 7873f856848ce5489f05c79581e2439aaff4bae7 Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Sun, 11 Apr 2004 22:22:23 +0000 Subject: [PATCH] build fix for VMS --- src/mesa/main/imports.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.30.2