Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Sep 2016 18:20:11 +0000 (UTC)
From:      Guido Falsi <madpilot@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422688 - in head/net/hostapd: . files
Message-ID:  <201609231820.u8NIKBOE079017@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609231820.u8NIKBOE079017>