Date: Thu, 16 May 2019 02:41:27 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501763 - head/security/wpa_supplicant Message-ID: <201905160241.x4G2fRq7028507@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Thu May 16 02:41:26 2019 New Revision: 501763 URL: https://svnweb.freebsd.org/changeset/ports/501763 Log: Resolve the following error discovered in DEVELOPER mode. These options name have characters outside of [-_A-Z0-9]: IKEv2 MSCHAPv2 Modified: head/security/wpa_supplicant/Makefile (contents, props changed) Modified: head/security/wpa_supplicant/Makefile ============================================================================== --- head/security/wpa_supplicant/Makefile Thu May 16 02:41:24 2019 (r501762) +++ head/security/wpa_supplicant/Makefile Thu May 16 02:41:26 2019 (r501763) @@ -28,15 +28,15 @@ CFG= ${BUILD_WRKSRC}/.config OPTIONS_MULTI= DRV EAP OPTIONS_MULTI_DRV= BSD WIRED NDIS TEST NONE #ROBOSWITCH -OPTIONS_MULTI_EAP= TLS PEAP TTLS MD5 MSCHAPv2 GTC LEAP OTP PSK FAST \ - SIM PWD PAX AKA AKA_PRIME SAKE GPSK TNC IKEv2 EKE +OPTIONS_MULTI_EAP= TLS PEAP TTLS MD5 MSCHAPV2 GTC LEAP OTP PSK FAST \ + SIM PWD PAX AKA AKA_PRIME SAKE GPSK TNC IKEV2 EKE OPTIONS_DEFINE= WPS WPS_ER WPS_NOREG WPS_NFC PKCS12 SMARTCARD \ HT_OVERRIDES VHT_OVERRIDES TLSV12 IEEE80211W \ IEEE80211R DEBUG_FILE DEBUG_SYSLOG PRIVSEP \ DELAYED_MIC IEEE80211N IEEE80211AC INTERWORKING \ HS20 NO_ROAMING P2P TDLS DOCS OPTIONS_DEFAULT= BSD WIRED NDIS \ - TLS PEAP TTLS MD5 MSCHAPv2 GTC LEAP OTP PSK \ + TLS PEAP TTLS MD5 MSCHAPV2 GTC LEAP OTP PSK \ WPS PKCS12 SMARTCARD IEEE80211R DEBUG_SYSLOG \ INTERWORKING HS20 @@ -76,7 +76,7 @@ TLS_DESC= Transport Layer Security PEAP_DESC= Protected Extensible Authentication Protocol TTLS_DESC= Tunneled Transport Layer Security MD5_DESC= MD5 hash (deprecated, no key generation) -MSCHAPv2_DESC= Microsoft CHAP version 2 (RFC 2759) +MSCHAPV2_DESC= Microsoft CHAP version 2 (RFC 2759) GTC_DESC= Generic Token Card LEAP_DESC= Lightweight Extensible Authentication Protocol OTP_DESC= One-Time Password @@ -86,7 +86,7 @@ AKA_DESC= Autentication and Key Agreement (UMTS) AKA_PRIME_DESC= AKA Prime variant (RFC 5448) EKE_DESC= Encrypted Key Exchange SIM_DESC= Subscriber Identity Module -IKEv2_DESC= Internet Key Exchange version 2 +IKEV2_DESC= Internet Key Exchange version 2 PWD_DESC= Shared password (RFC 5931) PAX_DESC= Password Authenticated Exchange SAKE_DESC= Shared-Secret Authentication & Key Establishment @@ -121,8 +121,8 @@ post-patch: . endif .endfor # Set EAP protocol(s) -.for item in MD5 MSCHAPv2 TLS PEAP TTLS FAST GTC OTP PSK PWD PAX LEAP SIM \ - AKA AKA_PRIME SAKE GPSK TNC IKEv2 EKE +.for item in MD5 MSCHAPV2 TLS PEAP TTLS FAST GTC OTP PSK PWD PAX LEAP SIM \ + AKA AKA_PRIME SAKE GPSK TNC IKEV2 EKE . if ${PORT_OPTIONS:M${item}} @${ECHO_CMD} CONFIG_EAP_${item:tu}=y >> ${CFG} . endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905160241.x4G2fRq7028507>