From: Jose Fonseca Date: Thu, 23 Jun 2016 10:18:21 +0000 (+0100) Subject: include: Require MSVC 2013 Update 4. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=805dbdf06d98e6dcfe0b24e38cc13c88eb5f36be;p=mesa.git include: Require MSVC 2013 Update 4. Earlier MSVC 2013 releases have troubles compiling some of our C99 code, so make sure we have Update 4 to avoid confusion. Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Brian Paul --- diff --git a/include/c99_compat.h b/include/c99_compat.h index bfe655bb21b..24e96e0efef 100644 --- a/include/c99_compat.h +++ b/include/c99_compat.h @@ -36,8 +36,8 @@ */ #if defined(_MSC_VER) -# if _MSC_VER < 1800 -# error "Microsoft Visual Studio 2013 or higher required" +# if _MSC_VER < 1800 || (_MSC_FULL_VER < 180031101 && !defined(__clang__)) +# error "Microsoft Visual Studio 2013 Update 4 or higher required" # endif /*