summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac9
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 56d0ff40f4e4..e9019669650f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5288,17 +5288,10 @@ find_msvc_x64_dlls()
msvcdllpath="$VC_PRODUCT_DIR/redist/MSVC/$vcbuildnumber/x64/Microsoft.VC${VCVER}.CRT"
fi
fi
- # http://blogs.msdn.com/b/vcblog/archive/2014/06/03/visual-studio-14-ctp.aspx
- # Refactored C Runtime (CRT): This CTP contains the first preview of the substantially refactored CRT.
- # msvcr140.dll no longer exists. It is replaced by a trio of DLLs: vcruntime140.dll, appcrt140.dll,
- # and desktopcrt140.dll.
-
if test "$VCVER" = 150; then
msvcdlls="msvcp140.dll vcruntime140.dll"
- elif test "$VCVER" = 140; then
- msvcdlls="msvcp${VCVER}.dll vcruntime${VCVER}.dll"
else
- msvcdlls="msvcp${VCVER}.dll msvcr${VCVER}.dll"
+ msvcdlls="msvcp${VCVER}.dll vcruntime${VCVER}.dll"
fi
for dll in $msvcdlls; do
if ! test -f "$msvcdllpath/$dll"; then