summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-03-18 02:05:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-16 22:40:53 +0100
commitcb7368c110553dcb972480abc4a59b975677f7df (patch)
tree2ffd1b35c59f320e2141bc3016ca1777ffa4d412 /meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch
parent0183d7c4067fdf171a4420477e965dca58f6d7d3 (diff)
downloadpoky-cb7368c110553dcb972480abc4a59b975677f7df.tar.gz
glibc: Upgrade 2.21 -> 2.22
- git'ify the OE patches - add_resource_h_to_wait_h.patch - dropped, we do not support that old perf anymore - mips-rld-map-check.patch - Dropped because binutils is fixed for it see https://sourceware.org/ml/binutils/2011-12/msg00112.html - initgroups_keys.patch - Folded into 0026-eglibc-Forward-port-eglibc-options-groups-support.patch Change-Id: Ib8e731b212f52b8ff12e2180babbc19970fb1ef1 (From OE-Core rev: 6ea08396dbb628140fd3289fc9fb19df97914326) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch')
-rw-r--r--meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch b/meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch
new file mode 100644
index 0000000000..0ba5d2fbad
--- /dev/null
+++ b/meta/recipes-core/glibc/glibc/0014-Add-unused-attribute.patch
@@ -0,0 +1,34 @@
1From 0229d6c9c0e7721773118d5ae1d172c269bc9826 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 00:28:41 +0000
4Subject: [PATCH 14/27] Add unused attribute
5
6Helps in avoiding gcc warning when header is is included in
7a source file which does not use both functions
8
9 * iconv/gconv_charset.h (strip):
10 Add unused attribute.
11
12Signed-off-by: Khem Raj <raj.khem@gmail.com>
13
14Upstream-Status: Pending
15---
16 iconv/gconv_charset.h | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h
20index 80290bc..7890a8e 100644
21--- a/iconv/gconv_charset.h
22+++ b/iconv/gconv_charset.h
23@@ -21,7 +21,7 @@
24 #include <locale.h>
25
26
27-static void
28+static void __attribute__ ((unused))
29 strip (char *wp, const char *s)
30 {
31 int slash_count = 0;
32--
332.1.4
34