diff options
author | Rick Farina <zerochaos@gentoo.org> | 2020-02-17 20:38:55 -0500 |
---|---|---|
committer | Rick Farina <zerochaos@gentoo.org> | 2020-02-17 20:38:55 -0500 |
commit | 06ea529e68be364586486973a33278ecbfe9bcf9 (patch) | |
tree | 7a1a2f87104399b76452a453d404abe31781cc6c /net-wireless/wpa_supplicant | |
parent | sys-apps/systemd: move stable keywords to 244.3 (diff) | |
download | gentoo-06ea529e68be364586486973a33278ecbfe9bcf9.tar.gz gentoo-06ea529e68be364586486973a33278ecbfe9bcf9.tar.bz2 gentoo-06ea529e68be364586486973a33278ecbfe9bcf9.zip |
net-wireless/wpa_supplicant: fix libressl live
per testing it seems suiteb is still broken with libressl even in
wpa_supplicant git
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'net-wireless/wpa_supplicant')
-rw-r--r-- | net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild index 3cb7b352a50f..67a54e06ba61 100644 --- a/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild +++ b/net-wireless/wpa_supplicant/wpa_supplicant-9999.ebuild @@ -247,9 +247,11 @@ src_configure() { Kconfig_style_config OWE Kconfig_style_config SAE Kconfig_style_config DPP - Kconfig_style_config SUITEB Kconfig_style_config SUITEB192 fi + if ! use bindist && ! use libressl; then + Kconfig_style_config SUITEB + fi if use smartcard ; then Kconfig_style_config SMARTCARD @@ -452,6 +454,11 @@ pkg_postinst() { ewarn "This is incredibly undesirable" fi fi + if use libressl; then + ewarn "Libressl doesn't support SUITEB (part of WPA3)" + ewarn "but it does support SUITEB192 (the upgraded strength version of the same)" + ewarn "You probably don't care. Patches welcome" + fi # Mea culpa, feel free to remove that after some time --mgorny. local fn |