From 82d4201ce3bcf672b60d8d79ba0634b669ea300d Mon Sep 17 00:00:00 2001 From: Siddharth Agarwal Date: Fri, 27 Jan 2012 00:04:09 +0530 Subject: [PATCH] Followup to bug 699385: remove a bit from js/src/configure.in I forgot to tackle in the original patch. --- js/src/configure.in | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/js/src/configure.in b/js/src/configure.in index 34680e767ed..5e47005ac7c 100644 --- a/js/src/configure.in +++ b/js/src/configure.in @@ -803,15 +803,8 @@ EOF ]) MOZ_WINSDK_MAXVER=${ac_cv_winsdk_maxver} else - # The Vista SDK is the only one to have sdkddkver.h but not - # WinSDKVer.h - MOZ_CHECK_HEADERS([sdkddkver.h]) - if test "$ac_cv_header_sdkddkver_h" = "yes"; then - MOZ_WINSDK_MAXVER=0x06000000 - else - # Assume the Server 2003 Platform SDK - MOZ_WINSDK_MAXVER=0x05020000 - fi + # Any SDK which doesn't have WinSDKVer.h is too old. + AC_MSG_ERROR([Your SDK does not have WinSDKVer.h. It is probably too old. Please upgrade to a newer SDK or try running the Windows SDK Configuration Tool and selecting a newer SDK. See https://developer.mozilla.org/En/Windows_SDK_versions for more details on fixing this.]) fi unset _MSVC_VER_FILTER