DPP2: Fix wpa_supplicant build dependencies for CONFIG_AP=y build
Fix CONFIG_DPP2=y with CONFIG_AP=y build for cases where the needed dependencies were not pulled in by other optional build parameters. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
d2bae5763d
commit
1eff2e7bf1
2 changed files with 8 additions and 0 deletions
|
@ -907,8 +907,12 @@ endif
|
|||
ifdef CONFIG_DPP
|
||||
OBJS += src/ap/dpp_hostapd.c
|
||||
OBJS += src/ap/gas_query_ap.c
|
||||
NEED_AP_GAS_SERV=y
|
||||
endif
|
||||
ifdef CONFIG_INTERWORKING
|
||||
NEED_AP_GAS_SERV=y
|
||||
endif
|
||||
ifdef NEED_AP_GAS_SERV
|
||||
OBJS += src/ap/gas_serv.c
|
||||
endif
|
||||
ifdef CONFIG_HS20
|
||||
|
|
|
@ -953,8 +953,12 @@ endif
|
|||
ifdef CONFIG_DPP
|
||||
OBJS += ../src/ap/dpp_hostapd.o
|
||||
OBJS += ../src/ap/gas_query_ap.o
|
||||
NEED_AP_GAS_SERV=y
|
||||
endif
|
||||
ifdef CONFIG_INTERWORKING
|
||||
NEED_AP_GAS_SERV=y
|
||||
endif
|
||||
ifdef NEED_AP_GAS_SERV
|
||||
OBJS += ../src/ap/gas_serv.o
|
||||
endif
|
||||
ifdef CONFIG_HS20
|
||||
|
|
Loading…
Reference in a new issue