aboutsummaryrefslogtreecommitdiffstats
path: root/cmakeconfig.h.in
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2014-06-20 01:48:07 +0200
committerJörg Mayer <jmayer@loplof.de>2014-06-19 23:48:58 +0000
commitcdb68020ee1316714ad1e61d4c5779cfa3859882 (patch)
tree79d1b528c81b469b1800fc327952554ba3994be2 /cmakeconfig.h.in
parentb6d20a27a149c1b09f17561f972d0f45a41de992 (diff)
Make cmake build work for msvc 2013 (Graham Bloice)
Change-Id: I8e026dd75085723b95eb2542e102b4383379dfc8 Reviewed-on: https://code.wireshark.org/review/2469 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'cmakeconfig.h.in')
-rw-r--r--cmakeconfig.h.in6
1 files changed, 3 insertions, 3 deletions
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