lutok: move to Lua libraries menu
[buildroot-gz.git] / package / libnet / 0001-support-musl-libc.patch
blob0704157bb57ed3f5374812b18737e4dbb3c1b950
1 From ffd7fab744a9ad2893169a8fb6244074604d5d0d Mon Sep 17 00:00:00 2001
2 From: rofl0r <retnyg@gmx.net>
3 Date: Tue, 12 Aug 2014 21:51:39 +0200
4 Subject: [PATCH] Support musl libc, remove support for glibc < 2.1
6 The workarounds for glibc < 2.1 (was released february 1999) break the
7 build with musl libc.
9 It is very unlikely that 2.0 or earlier is still in use, and if so,
10 1) that's a big security hole
11 2) code wouldnt compile anyway since noone tested build in the last decade
12 3) user of it wouldn't expect anyway to get bleeding edge sw built on it,
13 so he would just use the latest version that works for him.
15 Closes #52
16 ---
17 libnet/src/libnet_link_linux.c | 11 -----------
18 1 file changed, 11 deletions(-)
20 diff --git a/libnet/src/libnet_link_linux.c b/libnet/src/libnet_link_linux.c
21 index 054458d..3c6df3c 100644
22 --- a/src/libnet_link_linux.c
23 +++ b/src/libnet_link_linux.c
24 @@ -30,26 +30,15 @@
25 #include <sys/time.h>
27 #include <net/if.h>
28 -#if (__GLIBC__)
29 #include <netinet/if_ether.h>
30 #include <net/if_arp.h>
31 -#else
32 -#include <linux/if_arp.h>
33 -#include <linux/if_ether.h>
34 -#endif
36 #if (HAVE_PACKET_SOCKET)
37 #ifndef SOL_PACKET
38 #define SOL_PACKET 263
39 #endif /* SOL_PACKET */
40 -#if __GLIBC__ >= 2 && __GLIBC_MINOR >= 1
41 #include <netpacket/packet.h>
42 #include <net/ethernet.h> /* the L2 protocols */
43 -#else
44 -#include <asm/types.h>
45 -#include <linux/if_packet.h>
46 -#include <linux/if_ether.h> /* The L2 protocols */
47 -#endif
48 #endif /* HAVE_PACKET_SOCKET */
50 #include "../include/libnet.h"