Drop USE_KERNEL_HEADERS define
This was only used for providing an option to use linux/if_packet.h instgead of netpacket/packet.h in src/ap/iapp.c. However, netpacket/packet.h is nowadays commonly available and hostapd already depends on it through src/l2_packet/l2_packet_linux.c, so there is no need to continue to provide this option for the kernel header. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
9b7cd5788a
commit
795abc8e0a
2 changed files with 0 additions and 8 deletions
|
@ -27,10 +27,6 @@ CFLAGS += -I$(abspath ../src/utils)
|
||||||
|
|
||||||
export BINDIR ?= /usr/local/bin/
|
export BINDIR ?= /usr/local/bin/
|
||||||
|
|
||||||
# Uncomment following line and set the path to your kernel tree include
|
|
||||||
# directory if your C library does not include all header files.
|
|
||||||
# CFLAGS += -DUSE_KERNEL_HEADERS -I/usr/src/linux/include
|
|
||||||
|
|
||||||
-include .config
|
-include .config
|
||||||
|
|
||||||
ifndef CONFIG_NO_GITVER
|
ifndef CONFIG_NO_GITVER
|
||||||
|
|
|
@ -34,11 +34,7 @@
|
||||||
#include "utils/includes.h"
|
#include "utils/includes.h"
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#ifdef USE_KERNEL_HEADERS
|
|
||||||
#include <linux/if_packet.h>
|
|
||||||
#else /* USE_KERNEL_HEADERS */
|
|
||||||
#include <netpacket/packet.h>
|
#include <netpacket/packet.h>
|
||||||
#endif /* USE_KERNEL_HEADERS */
|
|
||||||
|
|
||||||
#include "utils/common.h"
|
#include "utils/common.h"
|
||||||
#include "utils/eloop.h"
|
#include "utils/eloop.h"
|
||||||
|
|
Loading…
Reference in a new issue