mirror of
https://git.yoctoproject.org/poky
synced 2026-03-25 10:02:22 +01:00
In order to have more robust stand-alone network tools in oe-core, bring in inetutils from meta-openembedded/meta-networking. This imports the recipes as of git commit: commit 408204073e6bdcd8ac586e05d5b75213417673f2 Author: Martin Jansa <martin.jansa@gmail.com> Date: Thu Aug 16 20:39:15 2018 +0000 inetutils: fix build with glibc-2.28 (From OE-Core rev: ace6911e663709f07ca73aa72f6bb4f4111b2749) Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
721 B
Diff
30 lines
721 B
Diff
From 552a7d64ad4a7188a9b7cd89933ae7caf7ebfe90 Mon Sep 17 00:00:00 2001
|
|
From: Mike Frysinger <vapier at gentoo.org>
|
|
Date: Thu, 18 Nov 2010 16:59:14 -0500
|
|
Subject: [PATCH gnulib] printf-parse: pull in features.h for __GLIBC__
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Mike Frysinger <vapier at gentoo.org>
|
|
---
|
|
lib/printf-parse.h | 3 +++
|
|
1 files changed, 3 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/lib/printf-parse.h b/lib/printf-parse.h
|
|
index 67a4a2a..3bd6152 100644
|
|
--- a/lib/printf-parse.h
|
|
+++ b/lib/printf-parse.h
|
|
@@ -25,6 +25,9 @@
|
|
|
|
#include "printf-args.h"
|
|
|
|
+#ifdef HAVE_FEATURES_H
|
|
+# include <features.h> /* for __GLIBC__ */
|
|
+#endif
|
|
|
|
/* Flags */
|
|
#define FLAG_GROUP 1 /* ' flag */
|
|
--
|
|
1.7.3.2
|
|
|