diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2017-02-13 17:45:51 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-02-13 21:17:31 (GMT) |
commit | b5562a1a6eaf102d855b9c8dcf148a0ea277df2f (patch) | |
tree | 4b7194713a2290840b0698bb68f528c913cfae4b | |
parent | 88bf9c23549a2459b1bacc14e37ec8037518f801 (diff) | |
download | hostap-b5562a1a6eaf102d855b9c8dcf148a0ea277df2f.zip hostap-b5562a1a6eaf102d855b9c8dcf148a0ea277df2f.tar.gz hostap-b5562a1a6eaf102d855b9c8dcf148a0ea277df2f.tar.bz2 |
FILS: Remove CRC32 dependency from build
The published P802.11ai version does not use CRC32 anymore, so remove
inclusion of crc32.o into wpa_supplicant and hostapd builds based on
CONFIG_FILS=y.
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
-rw-r--r-- | hostapd/Android.mk | 5 | ||||
-rw-r--r-- | hostapd/Makefile | 5 | ||||
-rw-r--r-- | wpa_supplicant/Android.mk | 5 | ||||
-rw-r--r-- | wpa_supplicant/Makefile | 5 |
4 files changed, 0 insertions, 20 deletions
diff --git a/hostapd/Android.mk b/hostapd/Android.mk index 8664cfa..2c5925b 100644 --- a/hostapd/Android.mk +++ b/hostapd/Android.mk @@ -264,7 +264,6 @@ endif ifdef CONFIG_FILS L_CFLAGS += -DCONFIG_FILS OBJS += src/ap/fils_hlp.c -NEED_CRC32=y NEED_SHA384=y NEED_AES_SIV=y endif @@ -866,10 +865,6 @@ ifdef NEED_ECC L_CFLAGS += -DCONFIG_ECC endif -ifdef NEED_CRC32 -OBJS += src/utils/crc32.c -endif - ifdef CONFIG_NO_RANDOM_POOL L_CFLAGS += -DCONFIG_NO_RANDOM_POOL else diff --git a/hostapd/Makefile b/hostapd/Makefile index dfa7b96..75d841e 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -308,7 +308,6 @@ endif ifdef CONFIG_FILS CFLAGS += -DCONFIG_FILS OBJS += ../src/ap/fils_hlp.o -NEED_CRC32=y NEED_SHA384=y NEED_AES_SIV=y endif @@ -905,10 +904,6 @@ ifdef NEED_ECC CFLAGS += -DCONFIG_ECC endif -ifdef NEED_CRC32 -OBJS += ../src/utils/crc32.o -endif - ifdef CONFIG_NO_RANDOM_POOL CFLAGS += -DCONFIG_NO_RANDOM_POOL else diff --git a/wpa_supplicant/Android.mk b/wpa_supplicant/Android.mk index 0f56f1d..9ff9b99 100644 --- a/wpa_supplicant/Android.mk +++ b/wpa_supplicant/Android.mk @@ -247,7 +247,6 @@ endif ifdef CONFIG_FILS L_CFLAGS += -DCONFIG_FILS -NEED_CRC32=y NEED_SHA384=y NEED_AES_SIV=y endif @@ -1305,10 +1304,6 @@ ifdef NEED_ECC L_CFLAGS += -DCONFIG_ECC endif -ifdef NEED_CRC32 -OBJS += src/utils/crc32.c -endif - ifdef CONFIG_NO_RANDOM_POOL L_CFLAGS += -DCONFIG_NO_RANDOM_POOL else diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 460441c..4455dca 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -280,7 +280,6 @@ endif ifdef CONFIG_FILS CFLAGS += -DCONFIG_FILS -NEED_CRC32=y NEED_SHA384=y NEED_AES_SIV=y endif @@ -1351,10 +1350,6 @@ ifdef NEED_ECC CFLAGS += -DCONFIG_ECC endif -ifdef NEED_CRC32 -OBJS += ../src/utils/crc32.o -endif - ifdef CONFIG_NO_RANDOM_POOL CFLAGS += -DCONFIG_NO_RANDOM_POOL else |