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
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.
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
29 #include <netinet/if_ether.h>
30 #include <net/if_arp.h>
32 -#include <linux/if_arp.h>
33 -#include <linux/if_ether.h>
36 #if (HAVE_PACKET_SOCKET)
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 */
44 -#include <asm/types.h>
45 -#include <linux/if_packet.h>
46 -#include <linux/if_ether.h> /* The L2 protocols */
48 #endif /* HAVE_PACKET_SOCKET */
50 #include "../include/libnet.h"