aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-01-31 05:26:41 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-01-31 05:26:41 +0000
commitcd5aae8116e57519316bf427d6ef31c25be84f04 (patch)
treea29769b92fa9996b1bd4a8fdfd7aeaf8ef1272f0 /config.h.win32
parentb7eca1050cedc87fab9bbb11943454afd023f5ba (diff)
instead of putting the MSC_VER_REQUIRED test into the root Makefile (which would require to change ALL makefiles - the buildbot revealed it), simply put it in the wiretap generation. As wiretap is mandatory and one of the first things to be build this doesn't even sound like a bad idea anyway ...
svn path=/trunk/; revision=20646
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win328
1 files changed, 0 insertions, 8 deletions
diff --git a/config.h.win32 b/config.h.win32
index 4d5d605262..1be2f1856e 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -253,11 +253,3 @@
/* We shouldn't need this under Windows but we'll define it anyway. */
#define HTML_VIEWER "mozilla"
-
-/* Check for the required _MSC_VER */
-#if MSC_VER_REQUIRED != _MSC_VER
-#define WS_TO_STRING2(x) #x
-#define WS_TO_STRING(x) WS_TO_STRING2(x)
-#pragma message( "_MSC_VER is:" WS_TO_STRING(_MSC_VER) " but required is:" WS_TO_STRING(MSC_VER_REQUIRED) )
-#error Your MSVC_VARIANT setting in config.nmake doesn't match the MS compiler version!
-#endif