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

Stephan Bergmann sbergman at redhat.com
Tue May 30 06:51:45 UTC 2017


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 184c1df32a547b0257757dd7e0333db7eabdb33e
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon May 29 16:19:39 2017 +0200

    VCVER < 140 (i.e., MSVC 2013 and older) are no longer supported
    
    Change-Id: Id5c2de5cb343f86e210882404af19779da795793
    Reviewed-on: https://gerrit.libreoffice.org/38151
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/configure.ac b/configure.ac
index e9019669650f..f199e8ec99e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5911,7 +5911,7 @@ if test "$GCC" = "yes"; then
 else
     # MSVC has sprouted C++11 thread-safe statics in 2015
     # http://blogs.msdn.com/b/vcblog/archive/2015/06/19/c-11-14-17-features-in-vs-2015-rtm.aspx
-    if test "$COM" = "MSC" -a "$VCVER" -ge "140"; then
+    if test "$COM" = "MSC"; then
         AC_DEFINE(HAVE_THREADSAFE_STATICS)
         AC_MSG_RESULT([yes])
     else


More information about the Libreoffice-commits mailing list