Skip to content

Commit

Permalink
headers: Use Windows 10 as default _WIN32_WINNT value.
Browse files Browse the repository at this point in the history
Signed-off-by: Jacek Caban <jacek@codeweavers.com>
  • Loading branch information
cjacek committed Jan 5, 2021
1 parent 019ace6 commit f3c53a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mingw-w64-headers/configure
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@ Optional Packages:
--with-widl=PATH use widl to update idl-based headers. Optionally
search for a compatible widl in PATH
--with-default-win32-winnt=VER
Default value of _WIN32_WINNT (default: 0x502)
Default value of _WIN32_WINNT (default: 0xa00)
--with-default-msvcrt=LIB
Default msvcrt to target (default: msvcrt)
Expand Down Expand Up @@ -2799,7 +2799,7 @@ $as_echo_n "checking default _WIN32_WINNT version... " >&6; }
if test "${with_default_win32_winnt+set}" = set; then :
withval=$with_default_win32_winnt;
else
with_default_win32_winnt=0x502
with_default_win32_winnt=0xa00
fi

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_default_win32_winnt" >&5
Expand Down
4 changes: 2 additions & 2 deletions mingw-w64-headers/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ AC_SUBST([IDLHEAD_LIST])
AC_MSG_CHECKING([default _WIN32_WINNT version])
AC_ARG_WITH([default-win32-winnt],
[AS_HELP_STRING([--with-default-win32-winnt=VER],
[Default value of _WIN32_WINNT (default: 0x502)])],
[Default value of _WIN32_WINNT (default: 0xa00)])],
[],
[with_default_win32_winnt=0x502])
[with_default_win32_winnt=0xa00])
AC_MSG_RESULT([$with_default_win32_winnt])
AS_VAR_SET([DEFAULT_WIN32_WINNT],[$with_default_win32_winnt])
AC_SUBST([DEFAULT_WIN32_WINNT])
Expand Down

0 comments on commit f3c53a5

Please sign in to comment.