diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-11-10 11:42:41 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-14 23:00:11 +0100 |
commit | c54af0a294de09ecb8699d0d9a0fca8b39247a79 (patch) | |
tree | 4c282cc7f6e18c0b82f81d3c4d9f8d482272e630 | |
parent | 18828103cdc8b929b29f5cbc27cd771ab1a26326 (diff) | |
download | buildroot-novena-c54af0a294de09ecb8699d0d9a0fca8b39247a79.tar.gz buildroot-novena-c54af0a294de09ecb8699d0d9a0fca8b39247a79.zip |
libtirpc: handle the case where uClibc may have RPC support
When uClibc has RPC support, it is not needed to define the 'struct
rpcent' structure.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch b/package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch index b950cb31a..3ad25afe3 100644 --- a/package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch +++ b/package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch @@ -5,19 +5,22 @@ Subject: [PATCH] uClibc without RPC support does not install rpcent.h Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- - tirpc/rpc/rpcent.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) + tirpc/rpc/rpcent.h | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tirpc/rpc/rpcent.h b/tirpc/rpc/rpcent.h -index 7fd93d9..df1f5ed 100644 +index 7fd93d9..8ce05ed 100644 --- a/tirpc/rpc/rpcent.h +++ b/tirpc/rpc/rpcent.h -@@ -47,7 +47,7 @@ +@@ -46,8 +46,9 @@ + __BEGIN_DECLS - /* These are defined in /usr/include/rpc/netdb.h */ +-/* These are defined in /usr/include/rpc/netdb.h */ -#if 0 -+#if __UCLIBC__ ++/* These are defined in /usr/include/rpc/netdb.h, unless we are using ++ the C library without RPC support. */ ++#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_RPC__) struct rpcent { char *r_name; /* name of server for this rpc program */ char **r_aliases; /* alias list */ |