summaryrefslogtreecommitdiff
path: root/packages/mingw-w64/v5.0.2
diff options
context:
space:
mode:
Diffstat (limited to 'packages/mingw-w64/v5.0.2')
-rw-r--r--packages/mingw-w64/v5.0.2/0000-mingw64-malloc.patch58
-rw-r--r--packages/mingw-w64/v5.0.2/0001-gendef-explicit-fallthrough.patch44
-rw-r--r--packages/mingw-w64/v5.0.2/0002-genpeimg-explicit-fallthrough.patch31
-rw-r--r--packages/mingw-w64/v5.0.2/chksum8
-rw-r--r--packages/mingw-w64/v5.0.2/version.desc0
5 files changed, 0 insertions, 141 deletions
diff --git a/packages/mingw-w64/v5.0.2/0000-mingw64-malloc.patch b/packages/mingw-w64/v5.0.2/0000-mingw64-malloc.patch
deleted file mode 100644
index f19e8ce..0000000
--- a/packages/mingw-w64/v5.0.2/0000-mingw64-malloc.patch
+++ /dev/null
@@ -1,58 +0,0 @@
----
- mingw-w64-tools/genidl/src/genidl_cfg.h | 2 ++
- mingw-w64-tools/genidl/src/genidl_typinfo.c | 3 +++
- mingw-w64-tools/widl/include/pathtools.h | 3 +--
- mingw-w64-tools/widl/src/pathtools.c | 3 +--
- 4 files changed, 7 insertions(+), 4 deletions(-)
-
---- a/mingw-w64-tools/genidl/src/genidl_cfg.h
-+++ b/mingw-w64-tools/genidl/src/genidl_cfg.h
-@@ -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>
---- a/mingw-w64-tools/genidl/src/genidl_typinfo.c
-+++ b/mingw-w64-tools/genidl/src/genidl_typinfo.c
-@@ -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>
-
---- a/mingw-w64-tools/widl/include/pathtools.h
-+++ b/mingw-w64-tools/widl/include/pathtools.h
-@@ -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>
---- a/mingw-w64-tools/widl/src/pathtools.c
-+++ b/mingw-w64-tools/widl/src/pathtools.c
-@@ -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>
diff --git a/packages/mingw-w64/v5.0.2/0001-gendef-explicit-fallthrough.patch b/packages/mingw-w64/v5.0.2/0001-gendef-explicit-fallthrough.patch
deleted file mode 100644
index e4c7780..0000000
--- a/packages/mingw-w64/v5.0.2/0001-gendef-explicit-fallthrough.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-commit b4416f9a54ca0f27adc4a5a2d576779ec1288047
-Author: sezero <sezero@users.sourceforge.net>
-Date: Thu Jun 15 09:50:00 2017 +0300
-
- gendef.c (getMemonic): add /* fallthru */ comments in the switch to avoid -Wimplicit-fallthrough
-
----
- mingw-w64-tools/gendef/src/gendef.c | 10 +++++-----
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
---- a/mingw-w64-tools/gendef/src/gendef.c
-+++ b/mingw-w64-tools/gendef/src/gendef.c
-@@ -836,7 +836,7 @@
- if (!sz || code == c_ill)
- {
- PRDEBUG(" %s = 0x08%x ILL (%u) at least one==%d\n",name,
-- (unsigned int) pc, (unsigned int) sz,atleast_one[0]);
-+ (unsigned int) pc, (unsigned int) sz,atleast_one[0]);
- #if ENABLE_DEBUG == 1
- {
- unsigned char *ppc = (unsigned char *) map_va (pc);
-@@ -1031,10 +1031,10 @@
- PRDEBUG(" 0x%x illegal ", (unsigned int) b);
- #endif
- *aCode=c_ill; return 0;
-- case c_4: sz++;
-- case c_3: sz++;
-+ case c_4: sz++;/* fallthru */
-+ case c_3: sz++;/* fallthru */
- case c_lb:
-- case c_2: sz++;
-+ case c_2: sz++;/* fallthru */
- case c_retn: case c_retf:
- case c_iret: case c_int3:
- case c_ad: case c_op:
-@@ -1061,7 +1061,7 @@
- p = (unsigned char *) map_va (pc + sz);
- if (!p) { *aCode=c_ill; return 0; }
- #if ENABLE_DEBUG == 1
-- enter_save_insn(lw,p[0]);
-+ enter_save_insn(lw,p[0]);
- #endif
- b&=~0x7; b|=(p[0]&7);
- sz+=1;
diff --git a/packages/mingw-w64/v5.0.2/0002-genpeimg-explicit-fallthrough.patch b/packages/mingw-w64/v5.0.2/0002-genpeimg-explicit-fallthrough.patch
deleted file mode 100644
index 5986aef..0000000
--- a/packages/mingw-w64/v5.0.2/0002-genpeimg-explicit-fallthrough.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-commit f9f2bd0641b89895ab42b1948f431dadf1e837a4
-Author: sezero <sezero@users.sourceforge.net>
-Date: Thu Jun 15 09:45:52 2017 +0300
-
- genpeimg.c (pass_args): add a /* fallthru */ comment in the switch
- after show_usage() to avoid -Wimplicit-fallthrough
- (show_usage): mark the function with noreturn attribute.
-
----
- mingw-w64-tools/genpeimg/src/genpeimg.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
---- a/mingw-w64-tools/genpeimg/src/genpeimg.c
-+++ b/mingw-w64-tools/genpeimg/src/genpeimg.c
-@@ -28,7 +28,7 @@
- int dump_information = 0;
- static char *file_name = NULL;
-
--static void
-+static void __attribute__((noreturn))
- show_usage (void)
- {
- fprintf (stderr, "genpeimg [options] files...\n");
-@@ -204,6 +204,7 @@
- case 'h':
- if (h[2] == 0)
- show_usage ();
-+ /* fallthru */
- default:
- error_point:
- fprintf (stderr, "Unknown option ,%s'\n", h);
diff --git a/packages/mingw-w64/v5.0.2/chksum b/packages/mingw-w64/v5.0.2/chksum
deleted file mode 100644
index 8e6f53a..0000000
--- a/packages/mingw-w64/v5.0.2/chksum
+++ /dev/null
@@ -1,8 +0,0 @@
-md5 mingw-w64-v5.0.2.tar.bz2 80d6884c9da234e73054347f44158b8a
-sha1 mingw-w64-v5.0.2.tar.bz2 bb5409f034abb7c021b3e1c14db433fd253cbb59
-sha256 mingw-w64-v5.0.2.tar.bz2 5f46e80ff1a9102a37a3453743dae9df98262cba7c45306549ef7432cfd92cfd
-sha512 mingw-w64-v5.0.2.tar.bz2 430065a822afb9901219b1f86ea221ae70ef7820ea298f51828bf1689a014115dade967a806388b7ee3ed1ea1d6c53970514ec64d0185b5024523093d9e96060
-md5 mingw-w64-v5.0.2.zip 4c3d2eba443d575444d6e3e388d82988
-sha1 mingw-w64-v5.0.2.zip 118a2b44948385c3230f94e9a0ca2a0eab1d9692
-sha256 mingw-w64-v5.0.2.zip 3c1489941ec66574912c7a1927e2b4c12f6e0a48459183e43b2f3eeba13d3c19
-sha512 mingw-w64-v5.0.2.zip 16516f69adaeef6658fe826fd5f884aff969a18295941a0807be1130e82b7b85f6536e46623a6f5ce685fdcdabbf9043a56da7af1c061d53ccdf844f9207591d
diff --git a/packages/mingw-w64/v5.0.2/version.desc b/packages/mingw-w64/v5.0.2/version.desc
deleted file mode 100644
index e69de29..0000000
--- a/packages/mingw-w64/v5.0.2/version.desc
+++ /dev/null