summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlarig Le Lay <alarig@swordarmor.fr>2020-10-15 23:06:43 +0200
committerSam James <sam@gentoo.org>2021-01-10 14:42:32 +0000
commitf4831a30d002e33c50e18114f257d1c228c922c8 (patch)
treea70b7564552a685e08a08f59de08c1a71cec8574 /net-wireless
parentx11-misc/albert: remove old (diff)
downloadgentoo-f4831a30d002e33c50e18114f257d1c228c922c8.tar.gz
gentoo-f4831a30d002e33c50e18114f257d1c228c922c8.tar.bz2
gentoo-f4831a30d002e33c50e18114f257d1c228c922c8.zip
net-wireless/hostapd: Make bindist protocols depending on internal-tls
* Dragonfly (CONFIG_SAE) * Opportunistic Wireless Encryption (CONFIG_OWE) * Device Provisioning Protocol (CONFIG_DPP) Bug: https://bugs.gentoo.org/727542 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Alarig Le Lay <alarig@swordarmor.fr> Closes: https://github.com/gentoo/gentoo/pull/17864 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-wireless')
-rw-r--r--net-wireless/hostapd/hostapd-2.9-r3.ebuild12
1 files changed, 6 insertions, 6 deletions
diff --git a/net-wireless/hostapd/hostapd-2.9-r3.ebuild b/net-wireless/hostapd/hostapd-2.9-r3.ebuild
index b93c40f9893c..a8d7912544ae 100644
--- a/net-wireless/hostapd/hostapd-2.9-r3.ebuild
+++ b/net-wireless/hostapd/hostapd-2.9-r3.ebuild
@@ -99,9 +99,6 @@ src_configure() {
echo "CONFIG_EAP=y" >> ${CONFIG}
echo "CONFIG_ERP=y" >> ${CONFIG}
echo "CONFIG_EAP_MD5=y" >> ${CONFIG}
- echo "CONFIG_SAE=y" >> ${CONFIG}
- echo "CONFIG_OWE=y" >> ${CONFIG}
- echo "CONFIG_DPP=y" >> ${CONFIG}
if use suiteb; then
echo "CONFIG_SUITEB=y" >> ${CONFIG}
@@ -112,14 +109,17 @@ src_configure() {
echo "CONFIG_TLS=internal" >> ${CONFIG}
else
# SSL authentication methods
+ echo "CONFIG_DPP=y" >> ${CONFIG}
echo "CONFIG_EAP_FAST=y" >> ${CONFIG}
- echo "CONFIG_EAP_TLS=y" >> ${CONFIG}
- echo "CONFIG_EAP_TTLS=y" >> ${CONFIG}
echo "CONFIG_EAP_MSCHAPV2=y" >> ${CONFIG}
echo "CONFIG_EAP_PEAP=y" >> ${CONFIG}
+ echo "CONFIG_EAP_PWD=y" >> ${CONFIG}
+ echo "CONFIG_EAP_TLS=y" >> ${CONFIG}
+ echo "CONFIG_EAP_TTLS=y" >> ${CONFIG}
+ echo "CONFIG_OWE=y" >> ${CONFIG}
+ echo "CONFIG_SAE=y" >> ${CONFIG}
echo "CONFIG_TLSV11=y" >> ${CONFIG}
echo "CONFIG_TLSV12=y" >> ${CONFIG}
- echo "CONFIG_EAP_PWD=y" >> ${CONFIG}
fi
if use wps; then