All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] iproute2: fix build on glibc < 2.21 / uClibc
Date: Sat, 27 Oct 2018 17:45:38 +0200	[thread overview]
Message-ID: <20181027154538.4299-1-peter@korsgaard.com> (raw)

Fixes:
http://autobuild.buildroot.net/results/fc9/fc99b1ad49080f552ce611d5a7a2f9fe171b5a2c/
http://autobuild.buildroot.net/results/5f7/5f74c258a3adafa5aecd4abc378eef0573143764/

q_{etf,taprio}.c uses CLOCK_TAI, which isn't exposed by glibc < 2.21 or
uClibc, breaking the build. Provide a fallback definition like it is done
for IPPROTO_MPLS and others.

Patch submitted upstream:
https://lwn.net/ml/netdev/20181027153102.32302-1-peter%40korsgaard.com/

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 ...s.h-provide-fallback-CLOCK_TAI-definition.patch | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 package/iproute2/0001-utils.h-provide-fallback-CLOCK_TAI-definition.patch

diff --git a/package/iproute2/0001-utils.h-provide-fallback-CLOCK_TAI-definition.patch b/package/iproute2/0001-utils.h-provide-fallback-CLOCK_TAI-definition.patch
new file mode 100644
index 0000000000..c89db2b2eb
--- /dev/null
+++ b/package/iproute2/0001-utils.h-provide-fallback-CLOCK_TAI-definition.patch
@@ -0,0 +1,32 @@
+From 950bf78adc9a3290ed383eaeef01dee6543cfb97 Mon Sep 17 00:00:00 2001
+From: Peter Korsgaard <peter@korsgaard.com>
+Date: Sat, 27 Oct 2018 17:25:31 +0200
+Subject: [PATCH] utils.h: provide fallback CLOCK_TAI definition
+
+q_{etf,taprio}.c uses CLOCK_TAI, which isn't exposed by glibc < 2.21 or
+uClibc, breaking the build. Provide a fallback definition like it is done
+for IPPROTO_MPLS and others.
+
+Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
+---
+ include/utils.h | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/include/utils.h b/include/utils.h
+index 258d630e..685d2c1d 100644
+--- a/include/utils.h
++++ b/include/utils.h
+@@ -126,6 +126,10 @@ struct ipx_addr {
+ #define IPPROTO_MPLS	137
+ #endif
+ 
++#ifndef CLOCK_TAI
++# define CLOCK_TAI 11
++#endif
++
+ __u32 get_addr32(const char *name);
+ int get_addr_1(inet_prefix *dst, const char *arg, int family);
+ int get_prefix_1(inet_prefix *dst, char *arg, int family);
+-- 
+2.11.0
+
-- 
2.11.0

             reply	other threads:[~2018-10-27 15:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-27 15:45 Peter Korsgaard [this message]
2018-10-27 20:58 ` [Buildroot] [PATCH] iproute2: fix build on glibc < 2.21 / uClibc Peter Korsgaard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181027154538.4299-1-peter@korsgaard.com \
    --to=peter@korsgaard.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.