diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-03-03 23:46:15 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-03-03 23:48:26 +0100 |
commit | 242ed97d9a74a08363e1306452bba20f06d673e4 (patch) | |
tree | 4f3343fbe62697c02d058cce9bffb7e6e1c55e05 /configure.ac | |
parent | c503d3780fd095cc94103bf0f89b662c446b3b2b (diff) |
configure: update supported --with-windows-sdk values
Change-Id: I3589214b540232d84ad86c67991065f7d376c94b
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2b664ac4f270..6c3dbfca3b61 100644 --- a/configure.ac +++ b/configure.ac @@ -2027,14 +2027,14 @@ AC_ARG_WITH(visual-studio, ,) AC_ARG_WITH(windows-sdk, - AS_HELP_STRING([--with-windows-sdk=<6.0(A)/7.0(A)/7.1(A)/8.0(A)>], + AS_HELP_STRING([--with-windows-sdk=<7.1(A)/8.0(A)/8.1(A)>], [Specify which Windows SDK, or "Windows Kit", version to use in case the one that came with the selected Visual Studio is not what you want for some reason. Note that not all compiler/SDK combinations are supported. The intent is that this option should not be needed.]) [ - Usage: --with-windows-sdk=6.0(A)/7.0(A)/7.1(A)/8.0(A)> + Usage: --with-windows-sdk=7.1(A)/8.0(A)/8.1(A)> ], ,) @@ -5088,7 +5088,7 @@ find_winsdk_version() # Why we look for them in this particular order I don't know. But OTOH I case "$1" in - 6.0*|7.*) + 7.*) reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/v${1}/InstallationFolder" if test -n "$regvalue"; then winsdktest=$regvalue |