summaryrefslogtreecommitdiff
path: root/post_download.in
diff options
context:
space:
mode:
authorJesús Corrius <jesus@softcatala.org>2010-12-11 21:14:56 +0100
committerJesús Corrius <jesus@softcatala.org>2010-12-11 21:14:56 +0100
commit1fcaaf821d8bef5722b6416488f492bb816e4360 (patch)
tree963b8ad4a54655eb09f83b08ac6d1d7498bcc2d0 /post_download.in
parent70ec8050c88f4e953d22e9a20f680a0db182476b (diff)
Windows builds need msvcr71.dll in external/msvcp71
Diffstat (limited to 'post_download.in')
-rwxr-xr-x[-rw-r--r--]post_download.in12
1 files changed, 12 insertions, 0 deletions
diff --git a/post_download.in b/post_download.in
index b17f39527fdf..c6e5ac395cf2 100644..100755
--- a/post_download.in
+++ b/post_download.in
@@ -132,3 +132,15 @@ if test "$_os" = "WINNT"; then
AC_MSG_ERROR([instmsiw.exe is missing in external/msi.])
fi
fi
+
+dnl ===================================================================
+dnl Windows builds with MSVS 2008/2010 need msvcr71.dll in external/msvcp71
+dnl ===================================================================
+if test "$_os" = "WINNT"; then
+ AC_MSG_CHECKING([for msvcr71.dll])
+ if test -f ./external/msvcp71/msvcr71.dll; then
+ AC_MSG_RESULT([found])
+ else
+ AC_MSG_ERROR([msvcr71.dll is missing in external/msvcp71.])
+ fi
+fi