diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2018-01-07 20:08:31 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2018-01-07 21:28:37 +0100 |
commit | 8dc6c7c5be0c831cf442cd7767476b4a4eaaba08 (patch) | |
tree | 14c85a6a6867a5f87edf8950b64827be3248a5f2 /package/bdwgc/0003-configure-match-uclinux-pattern.patch | |
parent | 932f11152018e1f49750ed763e1213ff92e76c75 (diff) | |
download | buildroot-8dc6c7c5be0c831cf442cd7767476b4a4eaaba08.tar.gz buildroot-8dc6c7c5be0c831cf442cd7767476b4a4eaaba08.zip |
package/bdwgc: bump version to 7.6.2
Removed patches applied upstream:
0002-Fix-uClibc-build.patch
https://github.com/ivmai/bdwgc/commit/047230b71d421407ad2c8641ee4a87a1bd89145b
0003-configure-match-uclinux-pattern.patch
https://github.com/ivmai/bdwgc/commit/a628c90bdbf397465ac2ab2b11f14eb2e853651c
Renumbered remaining patches, added license hash.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bdwgc/0003-configure-match-uclinux-pattern.patch')
-rw-r--r-- | package/bdwgc/0003-configure-match-uclinux-pattern.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/package/bdwgc/0003-configure-match-uclinux-pattern.patch b/package/bdwgc/0003-configure-match-uclinux-pattern.patch deleted file mode 100644 index b2c61982a4..0000000000 --- a/package/bdwgc/0003-configure-match-uclinux-pattern.patch +++ /dev/null @@ -1,27 +0,0 @@ -From a628c90bdbf397465ac2ab2b11f14eb2e853651c Mon Sep 17 00:00:00 2001 -From: Romain Naour <romain.naour@gmail.com> -Date: Sat, 6 Aug 2016 23:24:35 +0200 -Subject: [PATCH] configure: match uclinux pattern - -BDWGC does not recognize "uclinux" as a valid OS part of the target -tuple which is used by some arm cortex-M toolchains. - -* configure.ac [$THREADS=pthreads] (GC_LINUX_THREADS, _REENTRANT): Define -for hosts matching "*-*-*linux*" (instead of "*-*-linux*"). ---- - configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/configure.ac b/configure.ac -index 22353547..fa745b56 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -190,7 +190,7 @@ case "$THREADS" in - AC_DEFINE(THREAD_LOCAL_ALLOC) - AC_MSG_WARN("Explicit GC_INIT() calls may be required."); - ;; -- *-*-linux* | *-*-nacl*) -+ *-*-*linux* | *-*-nacl*) - AC_DEFINE(GC_LINUX_THREADS) - AC_DEFINE(_REENTRANT) - ;; |