diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-12-15 16:08:39 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-06-24 16:02:40 +0200 |
commit | b47a67e4932840ca6ce7f54147c57df35f25f848 (patch) | |
tree | 8d603516ef5fa85efae2cde37de94ff90519b207 | |
parent | 8dd446a7b139dc69800fd70c6a7835ee5a9f8364 (diff) | |
download | cygnal-b47a67e4932840ca6ce7f54147c57df35f25f848.tar.gz cygnal-b47a67e4932840ca6ce7f54147c57df35f25f848.tar.bz2 cygnal-b47a67e4932840ca6ce7f54147c57df35f25f848.zip |
Drop Windows XP/2003 wincaps
-rw-r--r-- | winsup/cygwin/wincap.cc | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index 3b9327be5..c76fd95e7 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -17,38 +17,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_xpsp2 __attribute__((section (".cygwin_dll_common"), shared)) = { - def_guard_pages:1, - max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE, - is_server:false, - needs_count_in_si_lpres2:false, - has_gaa_largeaddress_bug:false, - has_broken_alloc_console:false, - has_console_logon_sid:false, - has_precise_system_time:false, - has_microsoft_accounts:false, - has_processor_groups:false, - has_broken_prefetchvm:false, - has_new_pebteb_region:false, - has_broken_whoami:true, -}; - -wincaps wincap_2003 __attribute__((section (".cygwin_dll_common"), shared)) = { - def_guard_pages:1, - max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE, - is_server:false, - needs_count_in_si_lpres2:false, - has_gaa_largeaddress_bug:false, - has_broken_alloc_console:false, - has_console_logon_sid:false, - has_precise_system_time:false, - has_microsoft_accounts:false, - has_processor_groups:false, - has_broken_prefetchvm:false, - has_new_pebteb_region:false, - has_broken_whoami:true, -}; - wincaps wincap_vista __attribute__((section (".cygwin_dll_common"), shared)) = { def_guard_pages:1, max_sys_priv:SE_CREATE_SYMBOLIC_LINK_PRIVILEGE, @@ -148,17 +116,6 @@ wincapc::init () switch (version.dwMajorVersion) { - case 5: - switch (version.dwMinorVersion) - { - case 1: - caps = &wincap_xpsp2; - break; - - default: - caps = &wincap_2003; - } - break; case 6: switch (version.dwMinorVersion) { |