aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorAnders <anders.broman@ericsson.com>2015-06-09 12:45:03 +0200
committerAnders Broman <a.broman58@gmail.com>2015-06-09 11:40:00 +0000
commit9cb09a242f752c775a6d11d12dcb84ef6d9264d2 (patch)
tree5c0354758d2625182342d391055a7c0dca8e61a5 /config.h.win32
parente187b5396eee802fb2319f199fc3f6986189b15f (diff)
[MSVC 2015] Change the check to look for MSVC 2010 or newer rather than
adding MSVC 2015 Change-Id: I151be089529f2bb460b313f84a348f51689eb445 Reviewed-on: https://code.wireshark.org/review/8854 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win323
1 files changed, 1 insertions, 2 deletions
diff --git a/config.h.win32 b/config.h.win32
index c0074b2888..0a60f7d6d7 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -231,8 +231,7 @@
#define _U_
/* Visual C 9 (2008), Visual C 10 (2010) and 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 || _MSC_VER == 1800
+#if _MSC_VER >= 1500
#define NTDDI_VERSION NTDDI_WINXPSP3
#define _WIN32_WINNT _WIN32_WINNT_WINXP
#endif