From owner-freebsd-stable@FreeBSD.ORG Thu Sep 6 02:03:06 2007 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73D6416A41A for ; Thu, 6 Sep 2007 02:03:06 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from nc8000.tharned.org (rrcs-24-56-87-26.ma.biz.rr.com [24.56.87.26]) by mx1.freebsd.org (Postfix) with ESMTP id 3889F13C442 for ; Thu, 6 Sep 2007 02:03:06 +0000 (UTC) (envelope-from gcr+freebsd-stable@tharned.org) Received: from nc8000.tharned.org (gcr@localhost [127.0.0.1]) by nc8000.tharned.org (8.14.1/8.14.1) with ESMTP id l861pDs6094141 for ; Wed, 5 Sep 2007 20:51:13 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Received: from localhost (gcr@localhost) by nc8000.tharned.org (8.14.1/8.14.1/Submit) with ESMTP id l861pCXT094138 for ; Wed, 5 Sep 2007 20:51:13 -0500 (CDT) (envelope-from gcr+freebsd-stable@tharned.org) Date: Wed, 5 Sep 2007 20:51:12 -0500 (CDT) From: Greg Rivers Sender: gcr@tharned.org To: freebsd-stable@freebsd.org Message-ID: <20070905202534.A94068@nc8000.tharned.org> Precedence: special-delivery MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: wpa_supplicant features and compile options X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Sep 2007 02:03:06 -0000 I connect to certain wireless networks that require the EAP_GTC and EAP_OTP features in wpa_supplicant. These features are not compiled into wpa_supplicant by default. Using the patch below works great, but it's inconvenient having to remember to apply it after every cvsup. Is there a better way to accomplish this? If not, might a change such as this be committed to enable GTC and OTP by default? -- Greg Rivers -----------cut here----------------------------------------------------- --- usr.sbin/wpa/wpa_supplicant/Makefile.old ThuMar 23 19:43:18 2006 +++ usr.sbin/wpa/wpa_supplicant/Makefile TueMay 2 17:07:30 2006 @@ -34,8 +34,8 @@ eap_psk.c eap_psk_common.c \ eap_tlv.c eap_tls_common.c tls_openssl.c ms_funcs.c crypto.c -CFLAGS+=-DEAP_TTLS -DEAP_MD5 -SRCS+= eap_ttls.c eap_md5.c +CFLAGS+=-DEAP_TTLS -DEAP_MD5 -DEAP_GTC -DEAP_OTP +SRCS+= eap_ttls.c eap_md5.c eap_gtc.c eap_otp.c # NB: requires patch to openssl #CFLAGS+= -DEAP_FAST -----------cut here-----------------------------------------------------