summaryrefslogtreecommitdiff
path: root/post_download.in
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2011-12-05 15:03:34 +0100
committerAndras Timar <atimar@suse.com>2011-12-05 15:03:34 +0100
commita5f78432218627960159f14e272b08bc9de69e24 (patch)
tree583ebcfc209a1c23046d4d05f4d88d19055af292 /post_download.in
parenta7664d4b09b16a4b102e595d7ea4511652c76614 (diff)
no need to check for vcredist files, Windows installer don't use them
Diffstat (limited to 'post_download.in')
-rw-r--r--post_download.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/post_download.in b/post_download.in
index ea6b9433adb7..79b637e35fc0 100644
--- a/post_download.in
+++ b/post_download.in
@@ -70,25 +70,3 @@ You may have to search Microsoft's website. Last time it was seen at:
<http://www.microsoft.com/downloads/details.aspx?familyid=6A63AB9C-DF12-4D41-933C-BE590FEAA05A&displaylang=en>.])
fi
fi
-
-dnl ===================================================================
-dnl Windows builds need vcredist_x86.exe and vcredist_x64.exe in external/vcredist/
-dnl ===================================================================
-if test "$COM" = "MSC"; then
- AC_MSG_CHECKING([for vcredist_x86.exe])
- if test -e ./external/vcredist/vcredist_x86.exe; then
- AC_MSG_RESULT([found])
- else
- AC_MSG_ERROR([vcredist_x86.exe is missing in external/vcredist/.
-Get the version corresponding to your Visual Studio from the Microsoft site
-and put it into external/vcredist.])
- fi
- AC_MSG_CHECKING([for vcredist_x64.exe])
- if test -e ./external/vcredist/vcredist_x64.exe; then
- AC_MSG_RESULT([found])
- else
- AC_MSG_ERROR([vcredist_x64.exe is missing in external/vcredist/.
-Get the version corresponding to your Visual Studio from the Microsoft site
-and put it into external/vcredist.])
- fi
-fi