mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
bea0cde305
... and add 4.0.4 release. Signed-off-by: Alexey Neyman <stilor@att.net>
87 lines
1.5 KiB
Plaintext
87 lines
1.5 KiB
Plaintext
# mingw options
|
|
|
|
## depends on WINDOWS
|
|
##
|
|
## select LIBC_SUPPORT_THREADS_NATIVE
|
|
## select CC_CORE_PASS_2_NEEDED
|
|
##
|
|
## help The de-facto standard for Mingw distributions.
|
|
|
|
config THREADS
|
|
default "win32"
|
|
|
|
choice
|
|
bool
|
|
prompt "Windows API version"
|
|
|
|
config WINAPI_V_DEVEL
|
|
bool
|
|
prompt "devel"
|
|
depends on EXPERIMENTAL
|
|
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
|
|
config WINAPI_V_4_0_4
|
|
bool
|
|
prompt "4.0.4"
|
|
|
|
config WINAPI_V_4_0_2
|
|
bool
|
|
prompt "4.0.2"
|
|
|
|
config WINAPI_V_4_0_1
|
|
bool
|
|
prompt "4.0.1"
|
|
|
|
config WINAPI_V_4_0_0
|
|
bool
|
|
prompt "4.0.0"
|
|
|
|
config WINAPI_V_3_1_0
|
|
bool
|
|
prompt "3.1.0"
|
|
|
|
config WINAPI_V_3_0_0
|
|
bool
|
|
prompt "3.0.0"
|
|
|
|
config WINAPI_V_2_0_8
|
|
bool
|
|
prompt "2.0.8"
|
|
|
|
config WINAPI_V_2_0_7
|
|
bool
|
|
prompt "2.0.7"
|
|
|
|
config WINAPI_V_select
|
|
bool
|
|
prompt "Other version"
|
|
|
|
endchoice
|
|
|
|
config WINAPI_VERSION
|
|
string
|
|
prompt "Windows API version" if WINAPI_V_select
|
|
default "devel" if WINAPI_V_DEVEL
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "4.0.4" if WINAPI_V_4_0_4
|
|
default "4.0.2" if WINAPI_V_4_0_2
|
|
default "4.0.1" if WINAPI_V_4_0_1
|
|
default "4.0.0" if WINAPI_V_4_0_0
|
|
default "3.1.0" if WINAPI_V_3_1_0
|
|
default "3.0.0" if WINAPI_V_3_0_0
|
|
default "2.0.8" if WINAPI_V_2_0_8
|
|
default "2.0.7" if WINAPI_V_2_0_7
|
|
help
|
|
Enter the version number of the Windows API files to use
|
|
|
|
config MINGW_DIRECTX
|
|
bool
|
|
prompt "Include DirectX development files"
|
|
|
|
config MINGW_DDK
|
|
bool
|
|
prompt "Include DDK development files"
|