diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-10-13 03:40:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-27 07:24:25 +0000 |
commit | fd66dd15aa7f29a61961a5e9be4cad212bbec199 (patch) | |
tree | 74f93a7fb84e2214750a397af118593960b2e940 /meta/recipes-extended | |
parent | 369c53600e3faafa0111a8563af36ee46443d750 (diff) | |
download | poky-fd66dd15aa7f29a61961a5e9be4cad212bbec199.tar.gz |
rpcbind: Fix build with uclibc
The 0001-uclibc-nss.patch has been applied upstream
in a bit different way but solves the issue at hand
Change-Id: I7312d109d01c08338d4673383e2eaccee219b7bd
(From OE-Core rev: 8b84e778fb481075d245e1d5cc1b3b81024681d5)
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-extended')
-rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind/0001-uclibc-nss.patch | 30 | ||||
-rw-r--r-- | meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb | 2 |
2 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-extended/rpcbind/rpcbind/0001-uclibc-nss.patch b/meta/recipes-extended/rpcbind/rpcbind/0001-uclibc-nss.patch deleted file mode 100644 index afa55f3b76..0000000000 --- a/meta/recipes-extended/rpcbind/rpcbind/0001-uclibc-nss.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | From b8f0d7b7318ba344c25785d6f5cf3f8de98012d4 Mon Sep 17 00:00:00 2001 | ||
4 | From: Natanael Copa <ncopa@alpinelinux.org> | ||
5 | Date: Tue, 2 Feb 2010 09:36:03 +0000 | ||
6 | Subject: [PATCH 1/2] uclibc-nss | ||
7 | |||
8 | --- | ||
9 | src/rpcbind.c | 4 ++++ | ||
10 | 1 files changed, 4 insertions(+), 0 deletions(-) | ||
11 | |||
12 | diff --git a/src/rpcbind.c b/src/rpcbind.c | ||
13 | index 525ffba..1fe1a60 100644 | ||
14 | --- a/src/rpcbind.c | ||
15 | +++ b/src/rpcbind.c | ||
16 | @@ -67,7 +67,11 @@ | ||
17 | #include <pwd.h> | ||
18 | #include <string.h> | ||
19 | #include <errno.h> | ||
20 | +#if defined(__UCLIBC__) | ||
21 | +#define __nss_configure_lookup(x,y) | ||
22 | +#else | ||
23 | #include <nss.h> | ||
24 | +#endif | ||
25 | #include "config.h" | ||
26 | #include "rpcbind.h" | ||
27 | |||
28 | -- | ||
29 | 1.6.6.1 | ||
30 | |||
diff --git a/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb b/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb index 333602185c..237018b439 100644 --- a/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb +++ b/meta/recipes-extended/rpcbind/rpcbind_0.2.3.bb | |||
@@ -22,8 +22,6 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/rpcbind/rpcbind-${PV}.tar.bz2 \ | |||
22 | " | 22 | " |
23 | MUSLPATCHES_libc-musl = "file://musl-sunrpc.patch" | 23 | MUSLPATCHES_libc-musl = "file://musl-sunrpc.patch" |
24 | 24 | ||
25 | UCLIBCPATCHES_libc-uclibc = "file://0001-uclibc-nss.patch \ | ||
26 | " | ||
27 | UCLIBCPATCHES ?= "" | 25 | UCLIBCPATCHES ?= "" |
28 | MUSLPATCHES ?= "" | 26 | MUSLPATCHES ?= "" |
29 | 27 | ||