[Libreoffice-commits] core.git: configure.ac

Stephan Bergmann sbergman at redhat.com
Mon May 29 16:09:24 UTC 2017


 configure.ac |    9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

New commits:
commit 6cfe994fc23ef6c035c60cfa94c90e7034777b37
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon May 29 16:16:24 2017 +0200

    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 at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

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


More information about the Libreoffice-commits mailing list