This is an automated email from the ASF dual-hosted git repository. mturk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
The following commit(s) were added to refs/heads/master by this push: new 4253cb7 Fix trivial typo. Windows 7 ABI is 0x0601 4253cb7 is described below commit 4253cb75ea3eabf5c2b9481c704d07324f778a57 Author: Mladen Turk <mt...@apache.org> AuthorDate: Wed Mar 3 19:28:46 2021 +0100 Fix trivial typo. Windows 7 ABI is 0x0601 --- src/native/windows/include/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/native/windows/include/Makefile.inc b/src/native/windows/include/Makefile.inc index 4ed852c..17e813d 100644 --- a/src/native/windows/include/Makefile.inc +++ b/src/native/windows/include/Makefile.inc @@ -152,7 +152,7 @@ _WIN32_IE = 0x0600 NMAKE_WINVER = 0x0600 _WIN32_IE = 0x0700 !ELSEIF "$(WINVER)" == "WIN7" -NMAKE_WINVER = 0x0700 +NMAKE_WINVER = 0x0601 _WIN32_IE = 0x0800 !ELSE !ERROR Must specify WINVER environment variable (WINXP, WIN2003, VISTA, WIN7)