summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-01-14 05:59:03 (GMT)
committerAlexey Neyman <stilor@att.net>2017-01-16 17:10:29 (GMT)
commit70f20b20ef9be427848a37bb5867745216283ea8 (patch)
treef98d5e0e1fb8813608e4b3d79d85b3db4c6421e4 /config
parent07c82662f5064f84dff179084c841fd89c682163 (diff)
Add mingw-w64 5.0.0/5.0.1.
Also, move 'devel' to the bottom - we don't want this ever-moving tag to be default in the released product. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'config')
-rw-r--r--config/libc/mingw.in20
1 files changed, 15 insertions, 5 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in
index 45b6971..8ff1665 100644
--- a/config/libc/mingw.in
+++ b/config/libc/mingw.in
@@ -16,14 +16,17 @@ 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_5_0_1
+ bool
+ prompt "5.0.1"
+
+config WINAPI_V_5_0_0
+ bool
+ prompt "5.0.0"
+
config WINAPI_V_4_0_4
bool
prompt "4.0.4"
@@ -60,6 +63,11 @@ config WINAPI_V_select
bool
prompt "Other version"
+config WINAPI_V_DEVEL
+ bool
+ prompt "devel"
+ depends on EXPERIMENTAL
+
endchoice
config WINAPI_VERSION
@@ -68,6 +76,8 @@ config WINAPI_VERSION
default "devel" if WINAPI_V_DEVEL
# Don't remove next line
# 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.2" if WINAPI_V_4_0_2
default "4.0.1" if WINAPI_V_4_0_1