summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-05-29 16:16:24 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-05-29 18:08:51 +0200
commit6cfe994fc23ef6c035c60cfa94c90e7034777b37 (patch)
treebac3f4130ed9a4b9b43a8e032e016bde637e9ea3
parent922e935c8812b1c1f94347bdbd7cdf277a75644e (diff)
VCVER < 140 (i.e., MSVC 2013 and older) are no longer supported
Change-Id: I2f0765ced195e6b3ed84bfb4abfa3df3669ae7a1 Reviewed-on: https://gerrit.libreoffice.org/38149 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-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