Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2022-11-15 19:59:44 +0300
committerCorinna Vinschen <corinna@vinschen.de>2022-11-25 15:35:57 +0300
commitd9a4916c372a1c69db9c3837eeb09d95e7b91aad (patch)
tree34f4cc26a2dd65f29b7e21a3038d195021fdc75b
parent2c475e19e4b48f6bd2c6f855f45e624b287a6fe2 (diff)
Cygwin: drop wincaps for Windows 7 and Windows 8
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r--winsup/cygwin/wincap.cc58
1 files changed, 1 insertions, 57 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc
index 702d99e15..cc10e90dc 100644
--- a/winsup/cygwin/wincap.cc
+++ b/winsup/cygwin/wincap.cc
@@ -19,50 +19,6 @@ details. */
in the same session. I'm only writing this longish comment because I'm
puzzled that this has never been noticed before... */
-wincaps wincap_7 __attribute__((section (".cygwin_dll_common"), shared)) = {
- {
- is_server:false,
- has_new_pebteb_region:false,
- has_unprivileged_createsymlink:false,
- has_precise_interrupt_time:false,
- has_posix_unlink_semantics:false,
- has_posix_unlink_semantics_with_ignore_readonly:false,
- has_case_sensitive_dirs:false,
- has_posix_rename_semantics:false,
- has_con_24bit_colors:false,
- has_con_broken_csi3j:false,
- has_con_broken_il_dl:false,
- has_con_esc_rep:false,
- has_extended_mem_api:false,
- has_tcp_fastopen:false,
- has_linux_tcp_keepalive_sockopts:false,
- has_tcp_maxrtms:false,
- has_con_broken_tabs:false,
- },
-};
-
-wincaps wincap_8 __attribute__((section (".cygwin_dll_common"), shared)) = {
- {
- is_server:false,
- has_new_pebteb_region:false,
- has_unprivileged_createsymlink:false,
- has_precise_interrupt_time:false,
- has_posix_unlink_semantics:false,
- has_posix_unlink_semantics_with_ignore_readonly:false,
- has_case_sensitive_dirs:false,
- has_posix_rename_semantics:false,
- has_con_24bit_colors:false,
- has_con_broken_csi3j:false,
- has_con_broken_il_dl:false,
- has_con_esc_rep:false,
- has_extended_mem_api:false,
- has_tcp_fastopen:false,
- has_linux_tcp_keepalive_sockopts:false,
- has_tcp_maxrtms:false,
- has_con_broken_tabs:false,
- },
-};
-
wincaps wincap_8_1 __attribute__((section (".cygwin_dll_common"), shared)) = {
{
is_server:false,
@@ -304,19 +260,7 @@ wincapc::init ()
switch (version.dwMajorVersion)
{
case 6:
- switch (version.dwMinorVersion)
- {
- case 1:
- caps = &wincap_7;
- break;
- case 2:
- caps = &wincap_8;
- break;
- case 3:
- default:
- caps = &wincap_8_1;
- break;
- }
+ caps = &wincap_8_1;
break;
case 10:
default: