From: Jouni Malinen Date: Sun, 22 Dec 2024 16:53:12 +0000 (+0200) Subject: Include base64 for hostapd CONFIG_SAE_PK builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=430bc89b9a29537d9d22bb42406f3d14072a01d4;p=thirdparty%2Fhostap.git Include base64 for hostapd CONFIG_SAE_PK builds CONFIG_SAE_PK=y needs base64 functionality, so set NEED_BASE64 automatically for it. Signed-off-by: Jouni Malinen --- diff --git a/hostapd/Android.mk b/hostapd/Android.mk index e6c2fbf18..6e0d77d28 100644 --- a/hostapd/Android.mk +++ b/hostapd/Android.mk @@ -260,6 +260,7 @@ OBJS += src/common/sae.c ifdef CONFIG_SAE_PK L_CFLAGS += -DCONFIG_SAE_PK NEED_AES_SIV=y +NEED_BASE64=y OBJS += src/common/sae_pk.c endif NEED_ECC=y diff --git a/hostapd/Makefile b/hostapd/Makefile index fa0d366a8..c3419c10e 100644 --- a/hostapd/Makefile +++ b/hostapd/Makefile @@ -299,6 +299,7 @@ OBJS += ../src/common/sae.o ifdef CONFIG_SAE_PK CFLAGS += -DCONFIG_SAE_PK NEED_AES_SIV=y +NEED_BASE64=y OBJS += ../src/common/sae_pk.o endif NEED_ECC=y