summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Behrens <Thorsten.Behrens@CIB.de>2018-06-29 11:20:57 +0200
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2018-06-29 11:20:57 +0200
commiteaf14ee264dc266586831e234c81662693eb5ea6 (patch)
treebd6b19e04193f88f39160d4479542a426d17711f
parenta60bb6a9c5ac2e06782b31db3904093fa33234eb (diff)
Only supported MSVS version on this branch is VS2015
Due to 3rd party dependencies requiring better C++11 support Change-Id: Ic603ce6567e21f809eda042e981e4dc099b64f43
-rw-r--r--configure.ac11
1 files changed, 2 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 558e31d6d5b5..7abc5c56653c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2097,13 +2097,6 @@ AC_ARG_WITH(doxygen,
documentation. Not relevant in the --disable-odk case.]),
,with_doxygen=yes)
-AC_ARG_WITH(visual-studio,
- AS_HELP_STRING([--with-visual-studio=<2013/2015>],
- [Specify which Visual Studio version to use in case several are
- installed. If not specified, only 2013 is detected automatically
- because 2015 support is currently experimental.]),
-,)
-
AC_ARG_WITH(windows-sdk,
AS_HELP_STRING([--with-windows-sdk=<7.1(A)/8.0(A)/8.1(A)/10>],
[Specify which Windows SDK, or "Windows Kit", version to use
@@ -3326,8 +3319,8 @@ vs_versions_to_check()
map_vs_year_to_version "$1"
vsversions=$vsversion
else
- # By default we prefer 2013/2015, in this order
- vsversions="12.0 14.0"
+ # Only support VS2015 going forward
+ vsversions="14.0"
fi
}