From 40911f4fa04f71c8305e05a99abde9acba68e37f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 16 Oct 2015 00:47:17 -0700 Subject: 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 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-extended/libtirpc/libtirpc/va_list.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta/recipes-extended/libtirpc/libtirpc/va_list.patch (limited to 'meta/recipes-extended/libtirpc/libtirpc') 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 @@ +This patch is fixing build with uclibc where compiler ( gcc5 ) says it cant find va_list +the patch is right for upstreaming as well + +Signed-off-by: Khem Raj +Upstream-Status: Pending + +Index: libtirpc-0.2.5/src/debug.h +=================================================================== +--- libtirpc-0.2.5.orig/src/debug.h ++++ libtirpc-0.2.5/src/debug.h +@@ -22,6 +22,7 @@ + #ifndef _DEBUG_H + #define _DEBUG_H + #include ++#include + + extern int libtirpc_debug_level; + extern int log_stderr; -- cgit v1.2.3-54-g00ecf