summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/libtirpc/libtirpc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-10-16 00:47:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-10-27 07:24:26 +0000
commit40911f4fa04f71c8305e05a99abde9acba68e37f (patch)
tree49478d942845c9f219ce4c5a2dc88ba4cb176b6b /meta/recipes-extended/libtirpc/libtirpc
parentd90d3e88e9d3a136a767ef9a351e92c89f3547fe (diff)
downloadpoky-40911f4fa04f71c8305e05a99abde9acba68e37f.tar.gz
libtirpc: Fix a bug exposed by uclibc
to have va_list we need to include stdarg.h no matter what but it was latent since with glibc it was getting pull in silently via other headers Change-Id: Ie5f1af4c1374fa525647fcb3ae936ec525a99da1 (From OE-Core rev: b37b0f1ffd7e63484136b3715bfdf3a9c5e45f73) 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/libtirpc/libtirpc')
-rw-r--r--meta/recipes-extended/libtirpc/libtirpc/va_list.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-extended/libtirpc/libtirpc/va_list.patch b/meta/recipes-extended/libtirpc/libtirpc/va_list.patch
new file mode 100644
index 0000000000..855d15b581
--- /dev/null
+++ b/meta/recipes-extended/libtirpc/libtirpc/va_list.patch
@@ -0,0 +1,18 @@
1This patch is fixing build with uclibc where compiler ( gcc5 ) says it cant find va_list
2the patch is right for upstreaming as well
3
4Signed-off-by: Khem Raj <raj.khem@gmail.com>
5Upstream-Status: Pending
6
7Index: libtirpc-0.2.5/src/debug.h
8===================================================================
9--- libtirpc-0.2.5.orig/src/debug.h
10+++ libtirpc-0.2.5/src/debug.h
11@@ -22,6 +22,7 @@
12 #ifndef _DEBUG_H
13 #define _DEBUG_H
14 #include <syslog.h>
15+#include <stdarg.h>
16
17 extern int libtirpc_debug_level;
18 extern int log_stderr;