Skip to content

Instantly share code, notes, and snippets.

@lhl2617
Created July 5, 2021 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lhl2617/4f4407b5549376bc26946b247e8ddd82 to your computer and use it in GitHub Desktop.
Save lhl2617/4f4407b5549376bc26946b247e8ddd82 to your computer and use it in GitHub Desktop.
Sending build context to Docker daemon 237.1kB
Step 1/17 : FROM ubuntu:20.04
---> 7e0aa2d69a15
Step 2/17 : ENV DEBIAN_FRONTEND noninteractive
---> Using cache
---> f957335a502c
Step 3/17 : RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git rsync && apt-get clean && rm -rf /var/lib/apt/lists/*
---> Using cache
---> 5f1b11ea8ba0
Step 4/17 : WORKDIR /git
---> Using cache
---> 0ef544b15f92
Step 5/17 : RUN git config --global advice.detachedHead false
---> Using cache
---> 5dfb5a697cbb
Step 6/17 : RUN git clone --branch v5.13 --depth 1 https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux
---> Using cache
---> 6d8ed5032894
Step 7/17 : RUN git clone --branch release/2.33/master --depth 1 git://sourceware.org/git/glibc.git
---> Using cache
---> 3a3af7b2aa9a
Step 8/17 : ENV GOLANG_VERSION 1.17beta1
---> Using cache
---> 1b8f1ec941da
Step 9/17 : ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
---> Using cache
---> 2e610e3aacba
Step 10/17 : ENV GOLANG_DOWNLOAD_SHA256 a479681705b65971f9db079bfce53c4393bfa241d952eb09de88fb40677d3c4c
---> Using cache
---> 4015af6f2578
Step 11/17 : RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz && echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - && tar -C /usr/local -xzf golang.tar.gz && rm golang.tar.gz
---> Using cache
---> 04ab78891cfc
Step 12/17 : ENV PATH /usr/local/go/bin:$PATH
---> Using cache
---> 188010c14815
Step 13/17 : RUN apt-get update && apt-get install -y --no-install-recommends bison gawk make python3 gcc gcc-multilib gettext texinfo qemu-user && apt-get clean && rm -rf /var/lib/apt/lists/*
---> Using cache
---> 78beb06d8f37
Step 14/17 : RUN apt-get update && apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabi gcc-mips-linux-gnu gcc-mips64-linux-gnuabi64 gcc-mips64el-linux-gnuabi64 gcc-mipsel-linux-gnu gcc-powerpc-linux-gnu gcc-powerpc64-linux-gnu gcc-powerpc64le-linux-gnu gcc-riscv64-linux-gnu gcc-s390x-linux-gnu gcc-sparc64-linux-gnu && apt-get clean && rm -rf /var/lib/apt/lists/*
---> Using cache
---> d623a0fd4933
Step 15/17 : ENV GOLANG_SYS_BUILD docker
---> Using cache
---> 4940b964cb4b
Step 16/17 : WORKDIR /build
---> Using cache
---> 7cce77a416fc
Step 17/17 : ENTRYPOINT ["go", "run", "linux/mkall.go", "/git/linux", "/git/glibc"]
---> Using cache
---> 2222492471f4
Successfully built 2222492471f4
Successfully tagged generate:linux
----- GENERATING: 386 -----
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: 386 -----
----- GENERATING: amd64 -----
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: amd64 -----
----- GENERATING: arm64 -----
configure: WARNING: minimum kernel version reset to 3.7.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: arm64 -----
----- GENERATING: arm -----
configure: WARNING: arm/preconfigure: Did not find ARM architecture type; using default
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: arm -----
----- GENERATING: mips -----
configure: WARNING: gcc emits a warning for alias between functions of incompatible types
configure: WARNING: Multi-arch is disabled.
configure: WARNING: forcing executable stack for pre-4.8.0 Linux kernels
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: mips -----
----- GENERATING: mipsle -----
configure: WARNING: gcc emits a warning for alias between functions of incompatible types
configure: WARNING: Multi-arch is disabled.
configure: WARNING: forcing executable stack for pre-4.8.0 Linux kernels
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: mipsle -----
----- GENERATING: mips64 -----
configure: WARNING: gcc emits a warning for alias between functions of incompatible types
configure: WARNING: Multi-arch is disabled.
configure: WARNING: forcing executable stack for pre-4.8.0 Linux kernels
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: mips64 -----
----- GENERATING: mips64le -----
configure: WARNING: gcc emits a warning for alias between functions of incompatible types
configure: WARNING: Multi-arch is disabled.
configure: WARNING: forcing executable stack for pre-4.8.0 Linux kernels
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: mips64le -----
----- GENERATING: ppc -----
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: ppc -----
----- GENERATING: ppc64 -----
configure: WARNING: sysdeps/powerpc/powerpc64/be/power4/fpu/multiarch/Implies specifies nonexistent powerpc/powerpc64/fpu/multiarch
configure: WARNING: sysdeps/powerpc/powerpc64/be/power7/fpu/Implies specifies nonexistent powerpc/powerpc64/power7/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/power6/fpu/Implies specifies nonexistent powerpc/powerpc64/power6/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5+/fpu/Implies specifies nonexistent powerpc/powerpc64/power5+/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5/fpu/Implies specifies nonexistent powerpc/powerpc64/power5/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5+/Implies specifies nonexistent powerpc/powerpc64/power5+
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5+/Implies specifies nonexistent powerpc/power5+/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5+/Implies specifies nonexistent powerpc/power5+
configure: WARNING: sysdeps/powerpc/powerpc64/be/power5/Implies specifies nonexistent powerpc/powerpc64/power5
configure: WARNING: sysdeps/powerpc/powerpc64/be/power4/Implies specifies nonexistent powerpc/power4/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/be/fpu/multiarch/Implies specifies nonexistent powerpc/powerpc64/fpu/multiarch
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: ppc64 -----
----- GENERATING: ppc64le -----
configure: WARNING: sysdeps/powerpc/powerpc64/le/fpu/multiarch/Implies specifies nonexistent powerpc/powerpc64/fpu/multiarch
configure: WARNING: sysdeps/powerpc/powerpc64/le/power8/fpu/Implies specifies nonexistent powerpc/powerpc64/power8/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/fpu/Implies specifies nonexistent powerpc/powerpc64/power7/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/fpu/Implies specifies nonexistent powerpc/powerpc64/power6/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/fpu/Implies specifies nonexistent powerpc/powerpc64/power5+/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/fpu/Implies specifies nonexistent powerpc/powerpc64/power5/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/powerpc64/power6/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/powerpc64/power5+/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/powerpc64/power5+
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/power5+/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/power5+
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/powerpc64/power5/fpu
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/powerpc64/power5
configure: WARNING: sysdeps/powerpc/powerpc64/le/power7/Implies specifies nonexistent powerpc/power4/fpu
configure: WARNING: minimum kernel version reset to 3.10.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: ppc64le -----
----- GENERATING: riscv64 -----
configure: WARNING: gcc emits a warning for alias between functions of incompatible types
configure: WARNING: Multi-arch is disabled.
configure: WARNING: minimum kernel version reset to 4.15.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: riscv64 -----
----- GENERATING: s390x -----
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: s390x -----
----- GENERATING: sparc64 -----
configure: WARNING: minimum kernel version reset to 3.2.0
header files generated
zsysnum file generated
zsyscall file generated
ztypes file generated
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:31:8: error: redefinition of 'struct in_addr'
31 | struct in_addr
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:89:8: note: originally defined here
89 | struct in_addr {
| ^~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:150:8: error: redefinition of 'struct ip_mreqn'
150 | struct ip_mreqn
| ^~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:178:8: note: originally defined here
178 | struct ip_mreqn {
| ^~~~~~~~
In file included from /tmp/include/netinet/in.h:37,
from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/bits/in.h:158:8: error: redefinition of 'struct in_pktinfo'
158 | struct in_pktinfo
| ^~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:227:8: note: originally defined here
227 | struct in_pktinfo {
| ^~~~~~~~~~
/tmp/include/linux/in.h:30:21: error: redeclaration of enumerator 'IPPROTO_IP'
30 | #define IPPROTO_IP IPPROTO_IP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:42:5: note: in expansion of macro 'IPPROTO_IP'
42 | IPPROTO_IP = 0, /* Dummy protocol for TCP. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:29:3: note: previous definition of 'IPPROTO_IP' was here
29 | IPPROTO_IP = 0, /* Dummy protocol for TCP */
| ^~~~~~~~~~
/tmp/include/linux/in.h:32:23: error: redeclaration of enumerator 'IPPROTO_ICMP'
32 | #define IPPROTO_ICMP IPPROTO_ICMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:44:5: note: in expansion of macro 'IPPROTO_ICMP'
44 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:31:3: note: previous definition of 'IPPROTO_ICMP' was here
31 | IPPROTO_ICMP = 1, /* Internet Control Message Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:34:23: error: redeclaration of enumerator 'IPPROTO_IGMP'
34 | #define IPPROTO_IGMP IPPROTO_IGMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:46:5: note: in expansion of macro 'IPPROTO_IGMP'
46 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:33:3: note: previous definition of 'IPPROTO_IGMP' was here
33 | IPPROTO_IGMP = 2, /* Internet Group Management Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:36:23: error: redeclaration of enumerator 'IPPROTO_IPIP'
36 | #define IPPROTO_IPIP IPPROTO_IPIP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:48:5: note: in expansion of macro 'IPPROTO_IPIP'
48 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:35:3: note: previous definition of 'IPPROTO_IPIP' was here
35 | IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:38:22: error: redeclaration of enumerator 'IPPROTO_TCP'
38 | #define IPPROTO_TCP IPPROTO_TCP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:50:5: note: in expansion of macro 'IPPROTO_TCP'
50 | IPPROTO_TCP = 6, /* Transmission Control Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:37:3: note: previous definition of 'IPPROTO_TCP' was here
37 | IPPROTO_TCP = 6, /* Transmission Control Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:40:22: error: redeclaration of enumerator 'IPPROTO_EGP'
40 | #define IPPROTO_EGP IPPROTO_EGP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:52:5: note: in expansion of macro 'IPPROTO_EGP'
52 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:39:3: note: previous definition of 'IPPROTO_EGP' was here
39 | IPPROTO_EGP = 8, /* Exterior Gateway Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:42:22: error: redeclaration of enumerator 'IPPROTO_PUP'
42 | #define IPPROTO_PUP IPPROTO_PUP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:54:5: note: in expansion of macro 'IPPROTO_PUP'
54 | IPPROTO_PUP = 12, /* PUP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:41:3: note: previous definition of 'IPPROTO_PUP' was here
41 | IPPROTO_PUP = 12, /* PUP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:44:22: error: redeclaration of enumerator 'IPPROTO_UDP'
44 | #define IPPROTO_UDP IPPROTO_UDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:56:5: note: in expansion of macro 'IPPROTO_UDP'
56 | IPPROTO_UDP = 17, /* User Datagram Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:43:3: note: previous definition of 'IPPROTO_UDP' was here
43 | IPPROTO_UDP = 17, /* User Datagram Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:46:22: error: redeclaration of enumerator 'IPPROTO_IDP'
46 | #define IPPROTO_IDP IPPROTO_IDP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:58:5: note: in expansion of macro 'IPPROTO_IDP'
58 | IPPROTO_IDP = 22, /* XNS IDP protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:45:3: note: previous definition of 'IPPROTO_IDP' was here
45 | IPPROTO_IDP = 22, /* XNS IDP protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:48:21: error: redeclaration of enumerator 'IPPROTO_TP'
48 | #define IPPROTO_TP IPPROTO_TP
| ^~~~~~~~~~
/tmp/include/netinet/in.h:60:5: note: in expansion of macro 'IPPROTO_TP'
60 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:47:3: note: previous definition of 'IPPROTO_TP' was here
47 | IPPROTO_TP = 29, /* SO Transport Protocol Class 4 */
| ^~~~~~~~~~
/tmp/include/linux/in.h:50:23: error: redeclaration of enumerator 'IPPROTO_DCCP'
50 | #define IPPROTO_DCCP IPPROTO_DCCP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:62:5: note: in expansion of macro 'IPPROTO_DCCP'
62 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:49:3: note: previous definition of 'IPPROTO_DCCP' was here
49 | IPPROTO_DCCP = 33, /* Datagram Congestion Control Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:52:23: error: redeclaration of enumerator 'IPPROTO_IPV6'
52 | #define IPPROTO_IPV6 IPPROTO_IPV6
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:64:5: note: in expansion of macro 'IPPROTO_IPV6'
64 | IPPROTO_IPV6 = 41, /* IPv6 header. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:51:3: note: previous definition of 'IPPROTO_IPV6' was here
51 | IPPROTO_IPV6 = 41, /* IPv6-in-IPv4 tunnelling */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:54:23: error: redeclaration of enumerator 'IPPROTO_RSVP'
54 | #define IPPROTO_RSVP IPPROTO_RSVP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:66:5: note: in expansion of macro 'IPPROTO_RSVP'
66 | IPPROTO_RSVP = 46, /* Reservation Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:53:3: note: previous definition of 'IPPROTO_RSVP' was here
53 | IPPROTO_RSVP = 46, /* RSVP Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:56:22: error: redeclaration of enumerator 'IPPROTO_GRE'
56 | #define IPPROTO_GRE IPPROTO_GRE
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:68:5: note: in expansion of macro 'IPPROTO_GRE'
68 | IPPROTO_GRE = 47, /* General Routing Encapsulation. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:55:3: note: previous definition of 'IPPROTO_GRE' was here
55 | IPPROTO_GRE = 47, /* Cisco GRE tunnels (rfc 1701,1702) */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:58:22: error: redeclaration of enumerator 'IPPROTO_ESP'
58 | #define IPPROTO_ESP IPPROTO_ESP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:70:5: note: in expansion of macro 'IPPROTO_ESP'
70 | IPPROTO_ESP = 50, /* encapsulating security payload. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:57:3: note: previous definition of 'IPPROTO_ESP' was here
57 | IPPROTO_ESP = 50, /* Encapsulation Security Payload protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:60:21: error: redeclaration of enumerator 'IPPROTO_AH'
60 | #define IPPROTO_AH IPPROTO_AH
| ^~~~~~~~~~
/tmp/include/netinet/in.h:72:5: note: in expansion of macro 'IPPROTO_AH'
72 | IPPROTO_AH = 51, /* authentication header. */
| ^~~~~~~~~~
/tmp/include/linux/in.h:59:3: note: previous definition of 'IPPROTO_AH' was here
59 | IPPROTO_AH = 51, /* Authentication Header protocol */
| ^~~~~~~~~~
/tmp/include/linux/in.h:62:22: error: redeclaration of enumerator 'IPPROTO_MTP'
62 | #define IPPROTO_MTP IPPROTO_MTP
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:74:5: note: in expansion of macro 'IPPROTO_MTP'
74 | IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:61:3: note: previous definition of 'IPPROTO_MTP' was here
61 | IPPROTO_MTP = 92, /* Multicast Transport Protocol */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:64:25: error: redeclaration of enumerator 'IPPROTO_BEETPH'
64 | #define IPPROTO_BEETPH IPPROTO_BEETPH
| ^~~~~~~~~~~~~~
/tmp/include/netinet/in.h:76:5: note: in expansion of macro 'IPPROTO_BEETPH'
76 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET. */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:63:3: note: previous definition of 'IPPROTO_BEETPH' was here
63 | IPPROTO_BEETPH = 94, /* IP option pseudo header for BEET */
| ^~~~~~~~~~~~~~
/tmp/include/linux/in.h:66:24: error: redeclaration of enumerator 'IPPROTO_ENCAP'
66 | #define IPPROTO_ENCAP IPPROTO_ENCAP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:78:5: note: in expansion of macro 'IPPROTO_ENCAP'
78 | IPPROTO_ENCAP = 98, /* Encapsulation Header. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:65:3: note: previous definition of 'IPPROTO_ENCAP' was here
65 | IPPROTO_ENCAP = 98, /* Encapsulation Header */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:68:22: error: redeclaration of enumerator 'IPPROTO_PIM'
68 | #define IPPROTO_PIM IPPROTO_PIM
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:80:5: note: in expansion of macro 'IPPROTO_PIM'
80 | IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:67:3: note: previous definition of 'IPPROTO_PIM' was here
67 | IPPROTO_PIM = 103, /* Protocol Independent Multicast */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:70:23: error: redeclaration of enumerator 'IPPROTO_COMP'
70 | #define IPPROTO_COMP IPPROTO_COMP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:82:5: note: in expansion of macro 'IPPROTO_COMP'
82 | IPPROTO_COMP = 108, /* Compression Header Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:69:3: note: previous definition of 'IPPROTO_COMP' was here
69 | IPPROTO_COMP = 108, /* Compression Header Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:72:23: error: redeclaration of enumerator 'IPPROTO_SCTP'
72 | #define IPPROTO_SCTP IPPROTO_SCTP
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:84:5: note: in expansion of macro 'IPPROTO_SCTP'
84 | IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:71:3: note: previous definition of 'IPPROTO_SCTP' was here
71 | IPPROTO_SCTP = 132, /* Stream Control Transport Protocol */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:74:26: error: redeclaration of enumerator 'IPPROTO_UDPLITE'
74 | #define IPPROTO_UDPLITE IPPROTO_UDPLITE
| ^~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:86:5: note: in expansion of macro 'IPPROTO_UDPLITE'
86 | IPPROTO_UDPLITE = 136, /* UDP-Lite protocol. */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:73:3: note: previous definition of 'IPPROTO_UDPLITE' was here
73 | IPPROTO_UDPLITE = 136, /* UDP-Lite (RFC 3828) */
| ^~~~~~~~~~~~~~~
/tmp/include/linux/in.h:76:23: error: redeclaration of enumerator 'IPPROTO_MPLS'
76 | #define IPPROTO_MPLS IPPROTO_MPLS
| ^~~~~~~~~~~~
/tmp/include/netinet/in.h:88:5: note: in expansion of macro 'IPPROTO_MPLS'
88 | IPPROTO_MPLS = 137, /* MPLS in IP. */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:75:3: note: previous definition of 'IPPROTO_MPLS' was here
75 | IPPROTO_MPLS = 137, /* MPLS in IP (RFC 4023) */
| ^~~~~~~~~~~~
/tmp/include/linux/in.h:78:26: error: redeclaration of enumerator 'IPPROTO_ETHERNET'
78 | #define IPPROTO_ETHERNET IPPROTO_ETHERNET
| ^~~~~~~~~~~~~~~~
/tmp/include/netinet/in.h:90:5: note: in expansion of macro 'IPPROTO_ETHERNET'
90 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation. */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:77:3: note: previous definition of 'IPPROTO_ETHERNET' was here
77 | IPPROTO_ETHERNET = 143, /* Ethernet-within-IPv6 Encapsulation */
| ^~~~~~~~~~~~~~~~
/tmp/include/linux/in.h:80:22: error: redeclaration of enumerator 'IPPROTO_RAW'
80 | #define IPPROTO_RAW IPPROTO_RAW
| ^~~~~~~~~~~
/tmp/include/netinet/in.h:92:5: note: in expansion of macro 'IPPROTO_RAW'
92 | IPPROTO_RAW = 255, /* Raw IP packets. */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:79:3: note: previous definition of 'IPPROTO_RAW' was here
79 | IPPROTO_RAW = 255, /* Raw IP packets */
| ^~~~~~~~~~~
/tmp/include/linux/in.h:82:24: error: redeclaration of enumerator 'IPPROTO_MPTCP'
82 | #define IPPROTO_MPTCP IPPROTO_MPTCP
| ^~~~~~~~~~~~~
/tmp/include/netinet/in.h:94:5: note: in expansion of macro 'IPPROTO_MPTCP'
94 | IPPROTO_MPTCP = 262, /* Multipath TCP connection. */
| ^~~~~~~~~~~~~
/tmp/include/linux/in.h:81:3: note: previous definition of 'IPPROTO_MPTCP' was here
81 | IPPROTO_MPTCP = 262, /* Multipath TCP connection */
| ^~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:96:5: error: redeclaration of enumerator 'IPPROTO_MAX'
96 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:83:3: note: previous definition of 'IPPROTO_MAX' was here
83 | IPPROTO_MAX
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:242:8: error: redefinition of 'struct sockaddr_in'
242 | struct sockaddr_in
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:237:8: note: originally defined here
237 | struct sockaddr_in {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:269:8: error: redefinition of 'struct ip_mreq'
269 | struct ip_mreq
| ^~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:173:8: note: originally defined here
173 | struct ip_mreq {
| ^~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:278:8: error: redefinition of 'struct ip_mreq_source'
278 | struct ip_mreq_source
| ^~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:184:8: note: originally defined here
184 | struct ip_mreq_source {
| ^~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:305:8: error: redefinition of 'struct group_req'
305 | struct group_req
| ^~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:202:8: note: originally defined here
202 | struct group_req {
| ^~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:314:8: error: redefinition of 'struct group_source_req'
314 | struct group_source_req
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:207:8: note: originally defined here
207 | struct group_source_req {
| ^~~~~~~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:328:8: error: redefinition of 'struct ip_msfilter'
328 | struct ip_msfilter
| ^~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:190:8: note: originally defined here
190 | struct ip_msfilter {
| ^~~~~~~~~~~
In file included from /tmp/include/net/route.h:26,
from /build/_const.go:121:
/tmp/include/netinet/in.h:349:8: error: redefinition of 'struct group_filter'
349 | struct group_filter
| ^~~~~~~~~~~~
In file included from /tmp/include/linux/icmp.h:23,
from /build/_const.go:78:
/tmp/include/linux/in.h:213:8: note: originally defined here
213 | struct group_filter {
| ^~~~~~~~~~~~
zerrors file generated
----- SUCCESS: sparc64 -----
----- GENERATING: merging generated files -----
Merge failed with error: 1:1: expected 'package', found 386
exit status 1
could not merge zerrors files: exit status 1
***** FAILURE: merging generated files *****
----- GENERATING ptrace pairs -----
----- SUCCESS ptrace pairs -----
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment