This is the mail archive of the cygwin-cvs@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[newlib-cygwin] Set supported Windows release to Windows 10


https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=d21b63594cf4b58fb2c79608bccd0950dd5233cf

commit d21b63594cf4b58fb2c79608bccd0950dd5233cf
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Mon Jun 27 17:51:41 2016 +0200

    Set supported Windows release to Windows 10
    
    This affects setting _WIN32_WINNT and WINVER.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/utils/cygcheck.cc | 2 +-
 winsup/utils/cygpath.cc  | 4 ++--
 winsup/utils/ldd.cc      | 2 +-
 winsup/utils/locale.cc   | 4 ++--
 winsup/utils/mkgroup.c   | 2 +-
 winsup/utils/mkpasswd.c  | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index 4a67929..f6adf51 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -6,7 +6,7 @@
    Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
    details. */
 
-#define _WIN32_WINNT 0x0602
+#define _WIN32_WINNT 0x0a00
 #define cygwin_internal cygwin_internal_dontuse
 #include <stdio.h>
 #include <stdlib.h>
diff --git a/winsup/utils/cygpath.cc b/winsup/utils/cygpath.cc
index 3d402ea..6ab98cd 100644
--- a/winsup/utils/cygpath.cc
+++ b/winsup/utils/cygpath.cc
@@ -21,8 +21,8 @@ details. */
 #include <wctype.h>
 #include <errno.h>
 
-#define _WIN32_WINNT 0x0602
-#define WINVER 0x0602
+#define _WIN32_WINNT 0x0a00
+#define WINVER 0x0a00
 #define NOCOMATTRIBUTE
 #include <windows.h>
 #include <userenv.h>
diff --git a/winsup/utils/ldd.cc b/winsup/utils/ldd.cc
index 233d650..152119f 100644
--- a/winsup/utils/ldd.cc
+++ b/winsup/utils/ldd.cc
@@ -37,7 +37,7 @@
 #include <unistd.h>
 #include <libgen.h>
 
-#define _WIN32_WINNT 0x0501
+#define _WIN32_WINNT 0x0a00
 #include <windows.h>
 #include <imagehlp.h>
 #include <psapi.h>
diff --git a/winsup/utils/locale.cc b/winsup/utils/locale.cc
index 1d55d34..c9d4b5d 100644
--- a/winsup/utils/locale.cc
+++ b/winsup/utils/locale.cc
@@ -35,8 +35,8 @@
 #include <limits.h>
 #include <sys/cygwin.h>
 #include <cygwin/version.h>
-#define _WIN32_WINNT 0x0602
-#define WINVER 0x0602
+#define _WIN32_WINNT 0x0a00
+#define WINVER 0x0a00
 #include <windows.h>
 
 #define LOCALE_ALIAS		"/usr/share/locale/locale.alias"
diff --git a/winsup/utils/mkgroup.c b/winsup/utils/mkgroup.c
index f57592f..a9949d5 100644
--- a/winsup/utils/mkgroup.c
+++ b/winsup/utils/mkgroup.c
@@ -6,7 +6,7 @@
    Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
    details. */
 
-#define _WIN32_WINNT 0x0600
+#define _WIN32_WINNT 0x0a00
 #include <errno.h>
 #include <ctype.h>
 #include <stdlib.h>
diff --git a/winsup/utils/mkpasswd.c b/winsup/utils/mkpasswd.c
index 3f33496..27c607f 100644
--- a/winsup/utils/mkpasswd.c
+++ b/winsup/utils/mkpasswd.c
@@ -6,7 +6,7 @@
    Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
    details. */
 
-#define _WIN32_WINNT 0x0600
+#define _WIN32_WINNT 0x0a00
 #include <errno.h>
 #include <ctype.h>
 #include <stdlib.h>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]