The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libtirpc / 0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch
1 From a20f33ad121fb1e9d1fbc31a0044546450677e7a Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Sat, 23 Jun 2012 21:58:07 +0200
4 Subject: [PATCH] uClibc without RPC support does not install rpcent.h
5
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 ---
8  tirpc/rpc/rpcent.h | 5 +++--
9  1 file changed, 3 insertions(+), 2 deletions(-)
10
11 diff --git a/tirpc/rpc/rpcent.h b/tirpc/rpc/rpcent.h
12 index c865e51..45775ed 100644
13 --- a/tirpc/rpc/rpcent.h
14 +++ b/tirpc/rpc/rpcent.h
15 @@ -46,8 +46,9 @@
16  
17  __BEGIN_DECLS
18  
19 -/* These are defined in /usr/include/rpc/netdb.h */
20 -#if 0
21 +/* These are defined in /usr/include/rpc/netdb.h, unless we are using
22 +   the C library without RPC support. */
23 +#if defined(__UCLIBC__) && !defined(__UCLIBC_HAS_RPC__)
24  struct rpcent {
25         char    *r_name;        /* name of server for this rpc program */
26         char    **r_aliases;    /* alias list */
27 -- 
28 2.0.0
29