diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-05-23 20:44:50 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-05-27 23:27:41 +0200 |
commit | 0965080fbcaf9e3f168a799cce0eefbc76c8e5a5 (patch) | |
tree | 2a9b793fa1b668f0b94cb906511093bf8b5b642a /package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch | |
parent | dec494f9f58111ee1cd69048114b56f10a159272 (diff) | |
download | buildroot-0965080fbcaf9e3f168a799cce0eefbc76c8e5a5.tar.gz buildroot-0965080fbcaf9e3f168a799cce0eefbc76c8e5a5.zip |
libtirpc: use rpcgen from host-nfs-utils
Drop the patch adding local rpcgen. Instead use the host-nfs-utils
provided rpcgen. Update the patch "Automatically generate XDR header
files from .x sources using" to use external rpcgen.
Renumber the other patches.
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch')
-rw-r--r-- | package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch b/package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch deleted file mode 100644 index 62031613d6..0000000000 --- a/package/libtirpc/0007-include-stdint.h-for-uintptr_t.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 18f8a605e176f0362da22fd1203eb7cedb136aaf Mon Sep 17 00:00:00 2001 -From: Khem Raj <raj.khem@gmail.com> -Date: Tue, 20 Jun 2017 22:06:35 +0200 -Subject: [PATCH] include stdint.h for uintptr_t - -Fixes -| ../../libtirpc-1.0.1/src/xdr_sizeof.c:93:13: error: 'uintptr_t' undeclared (first use in this function); did you mean '__intptr_t'? -| if (len < (uintptr_t)xdrs->x_base) { -| ^~~~~~~~~ - -Signed-off-by: Khem Raj <raj.khem@gmail.com> -Signed-off-by: Dmitrii Kolesnichenko <dmitrii@synopsys.com> ---- - src/xdr_sizeof.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/xdr_sizeof.c b/src/xdr_sizeof.c -index d23fbd1..79d6707 100644 ---- a/src/xdr_sizeof.c -+++ b/src/xdr_sizeof.c -@@ -39,6 +39,7 @@ - #include <rpc/xdr.h> - #include <sys/types.h> - #include <stdlib.h> -+#include <stdint.h> - #include "un-namespace.h" - - /* ARGSUSED */ --- -2.9.4 - |