diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2009-11-24 10:24:54 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-11-24 10:24:54 +0200 |
commit | 73d0ad78c8d192a57095ecbfae0185813a05b8b9 (patch) | |
tree | bcd067b9ac818f55d9574b522222f01e32979262 /wpa_supplicant | |
parent | ec8d20187d1df7a1fcf450aa80671125d80ba878 (diff) | |
download | external_wpa_supplicant_8_ti-73d0ad78c8d192a57095ecbfae0185813a05b8b9.zip external_wpa_supplicant_8_ti-73d0ad78c8d192a57095ecbfae0185813a05b8b9.tar.gz external_wpa_supplicant_8_ti-73d0ad78c8d192a57095ecbfae0185813a05b8b9.tar.bz2 |
Fix internal crypto build with some configurations
crypto_internal.c requires both aes-internal-enc.o and
aes-internal-dec.o, so make sure they get included in the build when
using internal crypto.
Diffstat (limited to 'wpa_supplicant')
-rw-r--r-- | wpa_supplicant/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 19621ec..de86e03 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -823,6 +823,7 @@ ifeq ($(CONFIG_CRYPTO), internal) CFLAGS += -DCONFIG_INTERNAL_X509 OBJS += ../src/crypto/crypto_internal.o OBJS_p += ../src/crypto/crypto_internal.o +NEED_AES_ENC=y CFLAGS += -DCONFIG_CRYPTO_INTERNAL ifdef CONFIG_INTERNAL_LIBTOMMATH CFLAGS += -DCONFIG_INTERNAL_LIBTOMMATH |