From owner-svn-ports-head@freebsd.org Fri Sep 23 18:20:12 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1215BE6A15; Fri, 23 Sep 2016 18:20:12 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72724FEA; Fri, 23 Sep 2016 18:20:12 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8NIKBa9079021; Fri, 23 Sep 2016 18:20:11 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8NIKBOE079017; Fri, 23 Sep 2016 18:20:11 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201609231820.u8NIKBOE079017@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 23 Sep 2016 18:20:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422688 - in head/net/hostapd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Sep 2016 18:20:12 -0000 Author: madpilot Date: Fri Sep 23 18:20:11 2016 New Revision: 422688 URL: https://svnweb.freebsd.org/changeset/ports/422688 Log: Update to 2.5 PR: 212779 Submitted by: leres at ee.lbl.gov (maintainer) Added: head/net/hostapd/files/patch-src_utils_os.h (contents, props changed) head/net/hostapd/files/patch-src_utils_os__unix.c (contents, props changed) Deleted: head/net/hostapd/files/patch-src_ap_wmm.c head/net/hostapd/files/patch-src_drivers_driver__bsd.c head/net/hostapd/files/patch-src_eap__peer_eap__pwd.c head/net/hostapd/files/patch-src_eap__server_eap__server__pwd.c head/net/hostapd/files/patch-src_wps_httpread.c Modified: head/net/hostapd/Makefile head/net/hostapd/distinfo Modified: head/net/hostapd/Makefile ============================================================================== --- head/net/hostapd/Makefile Fri Sep 23 17:06:54 2016 (r422687) +++ head/net/hostapd/Makefile Fri Sep 23 18:20:11 2016 (r422688) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= hostapd -PORTVERSION= 2.4 -PORTREVISION= 2 +PORTVERSION= 2.5 CATEGORIES= net MASTER_SITES= http://w1.fi/releases/ Modified: head/net/hostapd/distinfo ============================================================================== --- head/net/hostapd/distinfo Fri Sep 23 17:06:54 2016 (r422687) +++ head/net/hostapd/distinfo Fri Sep 23 18:20:11 2016 (r422688) @@ -1,2 +1,3 @@ -SHA256 (hostapd-2.4.tar.gz) = 6fe0eb6bd1c9cbd24952ece8586b6f7bd14ab358edfda99794e79b9b9dbd657f -SIZE (hostapd-2.4.tar.gz) = 1658872 +TIMESTAMP = 1467776602 +SHA256 (hostapd-2.5.tar.gz) = 8e272d954dc0d7026c264b79b15389ec2b2c555b32970de39f506b9f463ec74a +SIZE (hostapd-2.5.tar.gz) = 1720783 Added: head/net/hostapd/files/patch-src_utils_os.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/hostapd/files/patch-src_utils_os.h Fri Sep 23 18:20:11 2016 (r422688) @@ -0,0 +1,17 @@ +--- src/utils/os.h.orig 2016-09-17 20:36:13 UTC ++++ src/utils/os.h +@@ -246,12 +246,14 @@ char * os_readfile(const char *name, siz + */ + int os_file_exists(const char *fname); + ++#ifndef __FreeBSD__ + /** + * os_fdatasync - Sync a file's (for a given stream) state with storage device + * @stream: the stream to be flushed + * Returns: 0 if the operation succeeded or -1 on failure + */ + int os_fdatasync(FILE *stream); ++#endif + + /** + * os_zalloc - Allocate and zero memory Added: head/net/hostapd/files/patch-src_utils_os__unix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/hostapd/files/patch-src_utils_os__unix.c Fri Sep 23 18:20:11 2016 (r422688) @@ -0,0 +1,18 @@ +--- src/utils/os_unix.c.orig 2015-09-27 19:02:05 UTC ++++ src/utils/os_unix.c +@@ -442,6 +442,7 @@ int os_file_exists(const char *fname) + } + + ++#ifndef __FreeBSD__ + int os_fdatasync(FILE *stream) + { + if (!fflush(stream)) { +@@ -459,6 +460,7 @@ int os_fdatasync(FILE *stream) + + return -1; + } ++#endif + + + #ifndef WPA_TRACE