diff options
author | Alexey Neyman <stilor@att.net> | 2015-11-10 18:18:57 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2015-11-10 18:18:57 -0800 |
commit | bea0cde3051624261eff6e413a044161d581973a (patch) | |
tree | e017c232ea3d70fadc5edc94e3c47750d96a8dfc /config | |
parent | 319c999f77872cb265004e5db5d30d502bc8a0a4 (diff) | |
download | crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.tar.gz crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.tar.bz2 crosstool-ng-bea0cde3051624261eff6e413a044161d581973a.zip |
Support mingw-w64 in addToolVersion.sh.
... and add 4.0.4 release.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/libc/mingw.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in index 895bc819..88088e9b 100644 --- a/config/libc/mingw.in +++ b/config/libc/mingw.in @@ -14,14 +14,18 @@ choice bool prompt "Windows API version" -# Don't remove next line -# CT_INSERT_VERSION_BELOW - 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" @@ -59,9 +63,10 @@ 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 "devel" if WINAPI_V_DEVEL + 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 |