From owner-p4-projects@FreeBSD.ORG Mon Apr 9 16:32:08 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DA91816A405; Mon, 9 Apr 2007 16:32:07 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A09D316A403 for ; Mon, 9 Apr 2007 16:32:07 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9403713C46E for ; Mon, 9 Apr 2007 16:32:07 +0000 (UTC) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l39GW7Bi000152 for ; Mon, 9 Apr 2007 16:32:07 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l39GW7vM000143 for perforce@freebsd.org; Mon, 9 Apr 2007 16:32:07 GMT (envelope-from sam@freebsd.org) Date: Mon, 9 Apr 2007 16:32:07 GMT Message-Id: <200704091632.l39GW7vM000143@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Cc: Subject: PERFORCE change 117748 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Apr 2007 16:32:08 -0000 http://perforce.freebsd.org/chv.cgi?CH=117748 Change 117748 by sam@sam_ebb on 2007/04/09 16:31:05 update for v0.5.7; note that ndis support is dropped because it does not even compile Affected files ... .. //depot/projects/wifi/usr.sbin/wpa/wpa_supplicant/Makefile#5 edit Differences ... ==== //depot/projects/wifi/usr.sbin/wpa/wpa_supplicant/Makefile#5 (text+ko) ==== @@ -7,9 +7,11 @@ PROG= wpa_supplicant SRCS= config.c eloop.c common.c md5.c rc4.c sha1.c aes_wrap.c \ - wpa_supplicant.c events.c wpa.c preauth.c \ - ctrl_iface.c l2_packet.c main.c drivers.c driver_freebsd.c \ - driver_ndis.c driver_ndis_.c Packet32.c + wpa_supplicant.c events.c wpa.c preauth.c pmksa_cache.c \ + ctrl_iface.c ctrl_iface_unix.c l2_packet.c main.c drivers.c \ + driver_ndis.c driver_ndis_.c Packet32.c \ + driver_freebsd.c os_unix.c + MAN= wpa_supplicant.8 wpa_supplicant.conf.5 @@ -17,6 +19,8 @@ CFLAGS+= -DCONFIG_DRIVER_BSD CFLAGS+= -DCONFIG_DRIVER_NDIS CFLAGS+= -DCONFIG_CTRL_IFACE +CFLAGS+= -DCONFIG_CTRL_IFACE_UNIX +CFLAGS+= -DCONFIG_TERMINATE_ONLASTIF CFLAGS+= -g DPADD+= ${LIBPCAP} LDADD+= -lpcap @@ -26,7 +30,7 @@ CFLAGS+=-DCONFIG_BACKEND_FILE .if ${MK_WPA_SUPPLICANT_EAPOL} != "no" -SRCS+= eapol_sm.c eap.c +SRCS+= eapol_sm.c eap.c eap_methods.c CFLAGS+= -DIEEE8021X_EAPOL .if ${MK_OPENSSL} != "no" && !defined(RELEASE_CRUNCH)