[PATCH] Fix IEEE 802.11r/w compilation error
Masashi Honma
honma
Mon Oct 12 19:24:13 PDT 2009
Oops. Previous patch changes file access mode.
I fixed it.
diff --git a/hostapd/Makefile b/hostapd/Makefile
index 22d298e..6529153 100644
--- a/hostapd/Makefile
+++ b/hostapd/Makefile
@@ -113,12 +113,14 @@ endif
ifdef CONFIG_IEEE80211W
CFLAGS += -DCONFIG_IEEE80211W
NEED_SHA256=y
+NEED_AES_OMAC1=y
endif
ifdef CONFIG_IEEE80211R
CFLAGS += -DCONFIG_IEEE80211R
OBJS += wpa_ft.o
NEED_SHA256=y
+NEED_AES_OMAC1=y
NEED_AES_UNWRAP=y
endif
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile
index 4b0ed2d..496b03c 100644
--- a/wpa_supplicant/Makefile
+++ b/wpa_supplicant/Makefile
@@ -115,6 +115,7 @@ endif
ifdef CONFIG_IEEE80211W
CFLAGS += -DCONFIG_IEEE80211W
NEED_SHA256=y
+NEED_AES_OMAC1=y
endif
ifdef CONFIG_IEEE80211R
@@ -122,6 +123,7 @@ CFLAGS += -DCONFIG_IEEE80211R
OBJS += ../src/rsn_supp/wpa_ft.o
NEED_80211_COMMON=y
NEED_SHA256=y
+NEED_AES_OMAC1=y
endif
ifdef CONFIG_PEERKEY
More information about the Hostap
mailing list