mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-18 10:46:26 +00:00
Mingw-w64 release 5.0.2
Signed-off-by: Alexey Neyman <stilor@att.net>
This commit is contained in:
parent
f22c4dcd7e
commit
6aaa2a1a67
@ -19,9 +19,14 @@ choice
|
|||||||
# Don't remove next line
|
# Don't remove next line
|
||||||
# CT_INSERT_VERSION_BELOW
|
# CT_INSERT_VERSION_BELOW
|
||||||
|
|
||||||
|
config WINAPI_V_5_0_2
|
||||||
|
bool
|
||||||
|
prompt "5.0.2"
|
||||||
|
|
||||||
config WINAPI_V_5_0_1
|
config WINAPI_V_5_0_1
|
||||||
bool
|
bool
|
||||||
prompt "5.0.1"
|
prompt "5.0.1 (OBSOLETE)"
|
||||||
|
depends on OBSOLETE
|
||||||
|
|
||||||
config WINAPI_V_5_0_0
|
config WINAPI_V_5_0_0
|
||||||
bool
|
bool
|
||||||
@ -110,6 +115,7 @@ 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.2" if WINAPI_V_5_0_2
|
||||||
default "5.0.1" if WINAPI_V_5_0_1
|
default "5.0.1" if WINAPI_V_5_0_1
|
||||||
default "5.0.0" if WINAPI_V_5_0_0
|
default "5.0.0" if WINAPI_V_5_0_0
|
||||||
default "4.0.6" if WINAPI_V_4_0_6
|
default "4.0.6" if WINAPI_V_4_0_6
|
||||||
|
55
patches/mingw-w64/v5.0.2/100-mingw64-malloc.patch
Normal file
55
patches/mingw-w64/v5.0.2/100-mingw64-malloc.patch
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
diff -urpN mingw-w64-v5.0.1.orig/mingw-w64-tools/genidl/src/genidl_cfg.h mingw-w64-v5.0.1/mingw-w64-tools/genidl/src/genidl_cfg.h
|
||||||
|
--- mingw-w64-v5.0.1.orig/mingw-w64-tools/genidl/src/genidl_cfg.h 2017-03-10 16:20:09.000000000 -0800
|
||||||
|
+++ mingw-w64-v5.0.1/mingw-w64-tools/genidl/src/genidl_cfg.h 2017-03-10 16:25:26.000000000 -0800
|
||||||
|
@@ -26,7 +26,9 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
+#if defined(HAVE_MALLOC_H)
|
||||||
|
#include <malloc.h>
|
||||||
|
+#endif
|
||||||
|
#include <memory.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
diff -urpN mingw-w64-v5.0.1.orig/mingw-w64-tools/genidl/src/genidl_typinfo.c mingw-w64-v5.0.1/mingw-w64-tools/genidl/src/genidl_typinfo.c
|
||||||
|
--- mingw-w64-v5.0.1.orig/mingw-w64-tools/genidl/src/genidl_typinfo.c 2017-03-10 16:20:09.000000000 -0800
|
||||||
|
+++ mingw-w64-v5.0.1/mingw-w64-tools/genidl/src/genidl_typinfo.c 2017-03-10 16:25:49.000000000 -0800
|
||||||
|
@@ -21,7 +21,10 @@
|
||||||
|
#include "genidl_cfg.h"
|
||||||
|
#include "genidl_typeinfo.h"
|
||||||
|
#include "genidl_typinfo.h"
|
||||||
|
+#if defined(HAVE_MALLOC_H)
|
||||||
|
#include <malloc.h>
|
||||||
|
+#endif
|
||||||
|
+#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <memory.h>
|
||||||
|
|
||||||
|
diff -urpN mingw-w64-v5.0.1.orig/mingw-w64-tools/widl/include/pathtools.h mingw-w64-v5.0.1/mingw-w64-tools/widl/include/pathtools.h
|
||||||
|
--- mingw-w64-v5.0.1.orig/mingw-w64-tools/widl/include/pathtools.h 2017-03-10 16:20:09.000000000 -0800
|
||||||
|
+++ mingw-w64-v5.0.1/mingw-w64-tools/widl/include/pathtools.h 2017-03-10 16:26:21.000000000 -0800
|
||||||
|
@@ -12,9 +12,8 @@
|
||||||
|
#define PATHTOOLS_H
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
-#if defined(__APPLE__)
|
||||||
|
#include <stdlib.h>
|
||||||
|
-#else
|
||||||
|
+#if defined(HAVE_MALLOC_H)
|
||||||
|
#include <malloc.h>
|
||||||
|
#endif
|
||||||
|
#include <stdio.h>
|
||||||
|
diff -urpN mingw-w64-v5.0.1.orig/mingw-w64-tools/widl/src/pathtools.c mingw-w64-v5.0.1/mingw-w64-tools/widl/src/pathtools.c
|
||||||
|
--- mingw-w64-v5.0.1.orig/mingw-w64-tools/widl/src/pathtools.c 2017-03-10 16:20:09.000000000 -0800
|
||||||
|
+++ mingw-w64-v5.0.1/mingw-w64-tools/widl/src/pathtools.c 2017-03-10 16:26:40.000000000 -0800
|
||||||
|
@@ -8,9 +8,8 @@
|
||||||
|
.email: <mingw.android@gmail.com>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
-#if defined(__APPLE__)
|
||||||
|
#include <stdlib.h>
|
||||||
|
-#else
|
||||||
|
+#if defined(HAVE_MALLOC_H)
|
||||||
|
#include <malloc.h>
|
||||||
|
#endif
|
||||||
|
#include <limits.h>
|
Loading…
Reference in New Issue
Block a user