* [iproute PATCH] utils.h: provide fallback CLOCK_TAI definition
@ 2018-10-27 15:31 Peter Korsgaard
2018-10-29 16:57 ` Stephen Hemminger
0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2018-10-27 15:31 UTC (permalink / raw)
To: Stephen Hemminger, Vinicius Costa Gomes; +Cc: netdev, Peter Korsgaard
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [iproute PATCH] utils.h: provide fallback CLOCK_TAI definition
2018-10-27 15:31 [iproute PATCH] utils.h: provide fallback CLOCK_TAI definition Peter Korsgaard
@ 2018-10-29 16:57 ` Stephen Hemminger
0 siblings, 0 replies; 2+ messages in thread
From: Stephen Hemminger @ 2018-10-29 16:57 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Vinicius Costa Gomes, netdev
On Sat, 27 Oct 2018 17:31:02 +0200
Peter Korsgaard <peter@korsgaard.com> wrote:
> 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>
> ---
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-10-30 1:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-27 15:31 [iproute PATCH] utils.h: provide fallback CLOCK_TAI definition Peter Korsgaard
2018-10-29 16:57 ` Stephen Hemminger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).