summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-05-29 16:19:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-05-30 08:51:11 +0200
commit184c1df32a547b0257757dd7e0333db7eabdb33e (patch)
treea2060191b38c86dbe3a98efa9f89a95eed901d0e /configure.ac
parent2ccde70d60d3a5074faf49260e8fe0ccdb91ff26 (diff)
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@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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