From cdb68020ee1316714ad1e61d4c5779cfa3859882 Mon Sep 17 00:00:00 2001 From: Joerg Mayer Date: Fri, 20 Jun 2014 01:48:07 +0200 Subject: Make cmake build work for msvc 2013 (Graham Bloice) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8e026dd75085723b95eb2542e102b4383379dfc8 Reviewed-on: https://code.wireshark.org/review/2469 Reviewed-by: Jörg Mayer --- cmakeconfig.h.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cmakeconfig.h.in') diff --git a/cmakeconfig.h.in b/cmakeconfig.h.in index 6454b2dffa..51bb88cd3e 100644 --- a/cmakeconfig.h.in +++ b/cmakeconfig.h.in @@ -393,10 +393,10 @@ /* FIXME: Detection doesn't work */ # define HAVE_NTDDNDIS_H 1 - /* Visual C 9 (2008), Visual C 10 (2010) and Visual C 11 (2012) need these - * prototypes + /* Visual C 9 (2008), Visual C 10 (2010), Visual C 11 (2012) and Visual C 12 (2013) + * need these prototypes * XXX: Can we use MSC_VER >= 1500 ?? */ -# if _MSC_VER == 1500 || _MSC_VER == 1600 || _MSC_VER == 1700 +# if _MSC_VER == 1500 || _MSC_VER == 1600 || _MSC_VER == 1700 || _MSC_VER == 1800 # define NTDDI_VERSION NTDDI_WIN2K # define _WIN32_WINNT _WIN32_WINNT_WIN2K # endif -- cgit v1.2.1