diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-03-01 22:25:06 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-03-03 08:36:00 +0100 |
commit | 95b064c2bbea8899245da20ad02f75f8594b2e18 (patch) | |
tree | 77094d43cee46407c5e5f2db14b8df85ee15eae3 /meta-oe/recipes-extended/collectd | |
parent | fe1f11a062da26736dc4fe7f6625f1595689d66e (diff) | |
download | meta-openembedded-95b064c2bbea8899245da20ad02f75f8594b2e18.tar.gz |
collectd: Backport fix build with newer gcc
on mips we get the errors of type mismatch
Change-Id: Ib7b3bd243417d1ba77e8167daf761fd4a2fc2e64
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/collectd')
-rw-r--r-- | meta-oe/recipes-extended/collectd/collectd/0001-netlink-ensure-size_t-portability-in-DEBUG-statement.patch | 30 | ||||
-rw-r--r-- | meta-oe/recipes-extended/collectd/collectd_5.4.1.bb | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/collectd/collectd/0001-netlink-ensure-size_t-portability-in-DEBUG-statement.patch b/meta-oe/recipes-extended/collectd/collectd/0001-netlink-ensure-size_t-portability-in-DEBUG-statement.patch new file mode 100644 index 000000000..52b9a86cb --- /dev/null +++ b/meta-oe/recipes-extended/collectd/collectd/0001-netlink-ensure-size_t-portability-in-DEBUG-statement.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From f6c89c17955223bf8c99a901ca6f901b83fa521f Mon Sep 17 00:00:00 2001 | ||
2 | From: Marc Fournier <marc.fournier@camptocamp.com> | ||
3 | Date: Wed, 3 Dec 2014 16:15:28 +0100 | ||
4 | Subject: [PATCH] netlink: ensure size_t portability in DEBUG() statement | ||
5 | |||
6 | This prevents the following error when building on 32bit systems with | ||
7 | gcc 4.7.2: | ||
8 | |||
9 | netlink.c: In function 'ir_read': | ||
10 | netlink.c:783:7: error: format '%lu' expects argument of type 'long unsigned int', but argument 5 has type 'size_t' [-Werror=format] | ||
11 | --- | ||
12 | src/netlink.c | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/src/netlink.c b/src/netlink.c | ||
16 | index 422dc8c..3c4642c 100644 | ||
17 | --- a/src/netlink.c | ||
18 | +++ b/src/netlink.c | ||
19 | @@ -683,7 +683,7 @@ static int ir_read (void) | ||
20 | continue; | ||
21 | } | ||
22 | |||
23 | - DEBUG ("netlink plugin: ir_read: querying %s from %s (%lu).", | ||
24 | + DEBUG ("netlink plugin: ir_read: querying %s from %s (%zu).", | ||
25 | type_name[type_index], iflist[ifindex], ifindex); | ||
26 | |||
27 | nlh = mnl_nlmsg_put_header (buf); | ||
28 | -- | ||
29 | 2.1.4 | ||
30 | |||
diff --git a/meta-oe/recipes-extended/collectd/collectd_5.4.1.bb b/meta-oe/recipes-extended/collectd/collectd_5.4.1.bb index 92b231c81..6e40076eb 100644 --- a/meta-oe/recipes-extended/collectd/collectd_5.4.1.bb +++ b/meta-oe/recipes-extended/collectd/collectd_5.4.1.bb | |||
@@ -9,6 +9,7 @@ SRC_URI = "http://collectd.org/files/collectd-${PV}.tar.bz2 \ | |||
9 | file://no-gcrypt-badpath.patch \ | 9 | file://no-gcrypt-badpath.patch \ |
10 | file://collectd-version.patch \ | 10 | file://collectd-version.patch \ |
11 | file://glibc-2.20-compatiblity.patch \ | 11 | file://glibc-2.20-compatiblity.patch \ |
12 | file://0001-netlink-ensure-size_t-portability-in-DEBUG-statement.patch \ | ||
12 | file://collectd.init \ | 13 | file://collectd.init \ |
13 | file://collectd.service" | 14 | file://collectd.service" |
14 | SRC_URI[md5sum] = "6f56c71c96573a7f4f7fb3bfab185974" | 15 | SRC_URI[md5sum] = "6f56c71c96573a7f4f7fb3bfab185974" |