From: José Fonseca Date: Thu, 24 Sep 2009 11:36:11 +0000 (+0100) Subject: mesa: Fix missing finite symbol error on Windows. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=622bdecabd73167d2f2f3aff0e223a8c64433f99;p=mesa.git mesa: Fix missing finite symbol error on Windows. Caused by some weird logic regarding the __WIN32__ define which made the finite definition dependent on the header include order. --- diff --git a/src/mesa/main/compiler.h b/src/mesa/main/compiler.h index 9319505a75d..380663ec971 100644 --- a/src/mesa/main/compiler.h +++ b/src/mesa/main/compiler.h @@ -107,8 +107,7 @@ extern "C" { /** * finite macro. */ -#if defined(_WIN32) && !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(BUILD_FOR_SNAP) -# define __WIN32__ +#if defined(_MSC_VER) # define finite _finite #elif defined(__WATCOMC__) # define finite _finite