Include ieee802_11_common.c in wpa_supplicant build unconditionally
This is needed for number of items and it was possible to make a build configuration that did not include ieee802_11_common.c while still trying to use functions from there. While it would be possible to add NEED_80211_COMMON=y to all the cases where this file is needed, the extra complexity from this is not really justifiable anymore, so include the file unconditionally. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
3eafc494d8
commit
2d4e9c2eb8
2 changed files with 0 additions and 14 deletions
|
@ -191,7 +191,6 @@ endif
|
|||
ifdef CONFIG_IEEE80211R
|
||||
L_CFLAGS += -DCONFIG_IEEE80211R
|
||||
OBJS += src/rsn_supp/wpa_ft.c
|
||||
NEED_80211_COMMON=y
|
||||
NEED_SHA256=y
|
||||
NEED_AES_OMAC1=y
|
||||
endif
|
||||
|
@ -261,7 +260,6 @@ OBJS += src/utils/bitfield.c
|
|||
L_CFLAGS += -DCONFIG_P2P
|
||||
NEED_GAS=y
|
||||
NEED_OFFCHANNEL=y
|
||||
NEED_80211_COMMON=y
|
||||
CONFIG_WPS=y
|
||||
CONFIG_AP=y
|
||||
ifdef CONFIG_P2P_STRICT
|
||||
|
@ -633,7 +631,6 @@ CONFIG_IEEE8021X_EAPOL=y
|
|||
NEED_DH_GROUPS=y
|
||||
NEED_SHA256=y
|
||||
NEED_BASE64=y
|
||||
NEED_80211_COMMON=y
|
||||
NEED_AES_CBC=y
|
||||
NEED_MODEXP=y
|
||||
|
||||
|
@ -742,7 +739,6 @@ endif
|
|||
endif
|
||||
|
||||
ifdef CONFIG_AP
|
||||
NEED_80211_COMMON=y
|
||||
NEED_EAP_COMMON=y
|
||||
NEED_RSN_AUTHENTICATOR=y
|
||||
L_CFLAGS += -DCONFIG_AP
|
||||
|
@ -1366,14 +1362,11 @@ OBJS += src/utils/base64.c
|
|||
endif
|
||||
|
||||
ifdef NEED_SME
|
||||
NEED_80211_COMMON=y
|
||||
OBJS += sme.c
|
||||
L_CFLAGS += -DCONFIG_SME
|
||||
endif
|
||||
|
||||
ifdef NEED_80211_COMMON
|
||||
OBJS += src/common/ieee802_11_common.c
|
||||
endif
|
||||
|
||||
ifdef NEED_EAP_COMMON
|
||||
OBJS += src/eap_common/eap_common.c
|
||||
|
|
|
@ -194,7 +194,6 @@ endif
|
|||
ifdef CONFIG_IEEE80211R
|
||||
CFLAGS += -DCONFIG_IEEE80211R
|
||||
OBJS += ../src/rsn_supp/wpa_ft.o
|
||||
NEED_80211_COMMON=y
|
||||
NEED_SHA256=y
|
||||
NEED_AES_OMAC1=y
|
||||
endif
|
||||
|
@ -264,7 +263,6 @@ OBJS += ../src/utils/bitfield.o
|
|||
CFLAGS += -DCONFIG_P2P
|
||||
NEED_GAS=y
|
||||
NEED_OFFCHANNEL=y
|
||||
NEED_80211_COMMON=y
|
||||
CONFIG_WPS=y
|
||||
CONFIG_AP=y
|
||||
ifdef CONFIG_P2P_STRICT
|
||||
|
@ -635,7 +633,6 @@ CONFIG_IEEE8021X_EAPOL=y
|
|||
NEED_DH_GROUPS=y
|
||||
NEED_SHA256=y
|
||||
NEED_BASE64=y
|
||||
NEED_80211_COMMON=y
|
||||
NEED_AES_CBC=y
|
||||
NEED_MODEXP=y
|
||||
|
||||
|
@ -757,7 +754,6 @@ OBJS += ../src/pae/ieee802_1x_secy_ops.o
|
|||
endif
|
||||
|
||||
ifdef CONFIG_AP
|
||||
NEED_80211_COMMON=y
|
||||
NEED_EAP_COMMON=y
|
||||
NEED_RSN_AUTHENTICATOR=y
|
||||
CFLAGS += -DCONFIG_AP
|
||||
|
@ -1386,14 +1382,11 @@ OBJS += ../src/utils/base64.o
|
|||
endif
|
||||
|
||||
ifdef NEED_SME
|
||||
NEED_80211_COMMON=y
|
||||
OBJS += sme.o
|
||||
CFLAGS += -DCONFIG_SME
|
||||
endif
|
||||
|
||||
ifdef NEED_80211_COMMON
|
||||
OBJS += ../src/common/ieee802_11_common.o
|
||||
endif
|
||||
|
||||
ifdef NEED_EAP_COMMON
|
||||
OBJS += ../src/eap_common/eap_common.o
|
||||
|
|
Loading…
Reference in a new issue