diff options
author | Ray Donnelly <mingw.android@gmail.com> | 2014-12-03 23:11:46 +0000 |
---|---|---|
committer | Ray Donnelly <mingw.android@gmail.com> | 2015-05-12 23:48:17 +0100 |
commit | d3b19674fca84e42014d5f4eea1cff1b0364ce6f (patch) | |
tree | ee78170be7da3f773881597f1274be5144161a83 | |
parent | 9f2630513f1e9bd72ac2154f906dd47a251a2a16 (diff) | |
download | crosstool-ng-d3b19674fca84e42014d5f4eea1cff1b0364ce6f.tar.gz crosstool-ng-d3b19674fca84e42014d5f4eea1cff1b0364ce6f.tar.bz2 crosstool-ng-d3b19674fca84e42014d5f4eea1cff1b0364ce6f.zip |
mingw-w64: Add updated versions
Specifically:
2.0.8
3.0.0, 3.1.0
4.0.0, 4.0.1, 4.0.2
Signed-off-by: Ray Donnelly <mingw.android@gmail.com>
-rw-r--r-- | config/libc/mingw.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/config/libc/mingw.in b/config/libc/mingw.in index 6997600a..431af51f 100644 --- a/config/libc/mingw.in +++ b/config/libc/mingw.in @@ -16,6 +16,31 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW + +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" @@ -31,6 +56,12 @@ config WINAPI_VERSION prompt "Windows API version" if WINAPI_V_select # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + 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 |