mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
Fixed MinGW build without CONFIG_NDIS_EVENTS_INTEGRATED defined
This commit is contained in:
parent
ccb172ed75
commit
6724f4d07a
@ -40,7 +40,9 @@ int close(int fd);
|
||||
#include "driver_ndis.h"
|
||||
|
||||
int wpa_driver_register_event_cb(struct wpa_driver_ndis_data *drv);
|
||||
#ifdef CONFIG_NDIS_EVENTS_INTEGRATED
|
||||
void wpa_driver_ndis_event_pipe_cb(void *eloop_data, void *user_data);
|
||||
#endif /* CONFIG_NDIS_EVENTS_INTEGRATED */
|
||||
|
||||
static void wpa_driver_ndis_deinit(void *priv);
|
||||
static void wpa_driver_ndis_poll(void *drv);
|
||||
|
@ -189,7 +189,10 @@ endif
|
||||
|
||||
ifdef CONFIG_DRIVER_NDIS
|
||||
CFLAGS += -DCONFIG_DRIVER_NDIS
|
||||
OBJS_d += ../src/drivers/driver_ndis.o ../src/drivers/driver_ndis_.o
|
||||
OBJS_d += ../src/drivers/driver_ndis.o
|
||||
ifdef CONFIG_NDIS_EVENTS_INTEGRATED
|
||||
OBJS_d += ../src/drivers/driver_ndis_.o
|
||||
endif
|
||||
ifndef CONFIG_L2_PACKET
|
||||
CONFIG_L2_PACKET=pcap
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user