summaryrefslogtreecommitdiff
path: root/neon
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-11-27 14:41:16 +0200
committerTor Lillqvist <tlillqvist@suse.com>2012-11-28 20:53:40 +0200
commita3ce60eb3c8bb5c69ab41556398efa8316286477 (patch)
treea9600fdf96ab53a1aef150fd9c4a1e8c23b9eb90 /neon
parentabfe16cec61eae33c64cb1901f0fc740b0466f60 (diff)
We only support MSVC 2008 (_MSC_VER 1500) or later
We can drop or simplify many conditionals. Change-Id: I37e820e515cc09845c30b62c89ddb3b6ff370f97
Diffstat (limited to 'neon')
-rw-r--r--neon/configs/config.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/neon/configs/config.h b/neon/configs/config.h
index b677e7ece95d..6f715e3aedd0 100644
--- a/neon/configs/config.h
+++ b/neon/configs/config.h
@@ -282,15 +282,13 @@
#endif
/* Define to 1 if you have the `vsnprintf' function. */
-#if defined( UNX ) || (defined(_MSC_VER) && (_MSC_VER > 1400))
+#if defined( UNX ) || defined(_MSC_VER)
#define HAVE_VSNPRINTF 1
#endif
-#ifdef WIN32
-#if (defined(_MSC_VER) && (_MSC_VER < 1500)) || defined(__MINGW32__)
+#ifdef __MINGW32__
#define vsnprintf _vsnprintf
#endif
-#endif
/* Define to be location of localedir */
/* #undef LOCALEDIR */