net/hostapd-devel: Update to the latest GH commit

Update to the latest w1.fi commit, proxied through my GH account.
This commit is contained in:
Cy Schubert 2021-11-29 12:54:15 -08:00
parent 5ced8583d5
commit b51ee23db4
3 changed files with 5 additions and 19 deletions

View file

@ -11,8 +11,8 @@ COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator
USE_GITHUB= yes
GH_ACCOUNT= cschuber
GH_PROJECT= hostap
GH_TAGNAME= b4f7506ff
COMMIT_DATE= 2021.07.14
GH_TAGNAME= 14ab4a816
COMMIT_DATE= 2021.11.26
LICENSE= BSD3CLAUSE

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1626898947
SHA256 (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 53d221682bd21cf6cc2ec9fa2012e186754960c3aaee8b94262a1cf4076a165c
SIZE (cschuber-hostap-2021.07.14-b4f7506ff_GH0.tar.gz) = 4789787
TIMESTAMP = 1638218753
SHA256 (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = e4ff65220bef6724448066f95ee0e76e8952d3ef8852b5338e431cfa91dd0244
SIZE (cschuber-hostap-2021.11.26-14ab4a816_GH0.tar.gz) = 4825757

View file

@ -1,14 +0,0 @@
--- src/utils/os_unix.c.orig 2021-06-02 14:11:18.000000000 -0700
+++ src/utils/os_unix.c 2021-06-07 16:07:39.152547000 -0700
@@ -464,9 +464,9 @@
int os_fdatasync(FILE *stream)
{
if (!fflush(stream)) {
-#ifdef __linux__
+#if defined __FreeBSD__ || defined __linux__
return fdatasync(fileno(stream));
-#else /* !__linux__ */
+#else /* !__linux__ && !__FreeBSD__ */
#ifdef F_FULLFSYNC
/* OS X does not implement fdatasync(). */
return fcntl(fileno(stream), F_FULLFSYNC);