Module Name: src Committed By: christos Date: Sun Jan 14 03:05:06 UTC 2018
Modified Files: src/external/bsd/wpa/bin/hostapd: Makefile Log Message: Add the NONE/WIRED drivers. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/wpa/bin/hostapd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/bsd/wpa/bin/hostapd/Makefile diff -u src/external/bsd/wpa/bin/hostapd/Makefile:1.10 src/external/bsd/wpa/bin/hostapd/Makefile:1.11 --- src/external/bsd/wpa/bin/hostapd/Makefile:1.10 Mon Nov 21 15:15:16 2016 +++ src/external/bsd/wpa/bin/hostapd/Makefile Sat Jan 13 22:05:06 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2016/11/21 20:15:16 christos Exp $ +# $NetBSD: Makefile,v 1.11 2018/01/14 03:05:06 christos Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -47,6 +47,8 @@ wpa_ctrl.c # drivers SRCS+= \ driver_bsd.c \ +driver_none.c \ +driver_wired.c \ driver_common.c \ drivers.c @@ -117,6 +119,9 @@ CPPFLAGS+= -DRADIUS_SERVER CPPFLAGS+= -DCONFIG_CTRL_IFACE CPPFLAGS+= -DCONFIG_CTRL_IFACE_UNIX CPPFLAGS+= -DCONFIG_DRIVER_BSD +CPPFLAGS+= -DCONFIG_DRIVER_NONE +CPPFLAGS+= -DCONFIG_DRIVER_WIRED +CPPFLAGS+= -DCONFIG_DRIVER_WPA .if ${MKINET6} != "no" CPPFLAGS+= -DCONFIG_IPV6 .endif