Merge pull request #542 from stilor/mingw-w64-5.0.x

Add mingw-w64 5.0.0/5.0.1
This commit is contained in:
Alexey Neyman 2017-01-16 23:00:40 -08:00 committed by GitHub
commit 92624c2fe0

View File

@ -16,29 +16,36 @@ choice
bool bool
prompt "Windows API version" prompt "Windows API version"
config WINAPI_V_DEVEL
bool
prompt "devel"
depends on EXPERIMENTAL
# Don't remove next line # Don't remove next line
# CT_INSERT_VERSION_BELOW # CT_INSERT_VERSION_BELOW
config WINAPI_V_5_0_1
bool
prompt "5.0.1"
config WINAPI_V_5_0_0
bool
prompt "5.0.0 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_4_0_4 config WINAPI_V_4_0_4
bool bool
prompt "4.0.4" prompt "4.0.4"
config WINAPI_V_4_0_2 config WINAPI_V_4_0_2
bool bool
prompt "4.0.2" prompt "4.0.2 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_4_0_1 config WINAPI_V_4_0_1
bool bool
prompt "4.0.1" prompt "4.0.1 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_4_0_0 config WINAPI_V_4_0_0
bool bool
prompt "4.0.0" prompt "4.0.0 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_3_1_0 config WINAPI_V_3_1_0
bool bool
@ -46,20 +53,28 @@ config WINAPI_V_3_1_0
config WINAPI_V_3_0_0 config WINAPI_V_3_0_0
bool bool
prompt "3.0.0" prompt "3.0.0 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_2_0_8 config WINAPI_V_2_0_8
bool bool
prompt "2.0.8" prompt "2.0.8 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_2_0_7 config WINAPI_V_2_0_7
bool bool
prompt "2.0.7" prompt "2.0.7 (OBSOLETE)"
depends on OBSOLETE
config WINAPI_V_select config WINAPI_V_select
bool bool
prompt "Other version" prompt "Other version"
config WINAPI_V_DEVEL
bool
prompt "devel"
depends on EXPERIMENTAL
endchoice endchoice
config WINAPI_VERSION config WINAPI_VERSION
@ -68,6 +83,8 @@ config WINAPI_VERSION
default "devel" if WINAPI_V_DEVEL default "devel" if WINAPI_V_DEVEL
# Don't remove next line # Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW # CT_INSERT_VERSION_STRING_BELOW
default "5.0.1" if WINAPI_V_5_0_1
default "5.0.0" if WINAPI_V_5_0_0
default "4.0.4" if WINAPI_V_4_0_4 default "4.0.4" if WINAPI_V_4_0_4
default "4.0.2" if WINAPI_V_4_0_2 default "4.0.2" if WINAPI_V_4_0_2
default "4.0.1" if WINAPI_V_4_0_1 default "4.0.1" if WINAPI_V_4_0_1