svn commit: r500474 - in head/net/onedrive: . files

Steve Wills swills at FreeBSD.org
Tue Apr 30 10:46:08 UTC 2019


Author: swills
Date: Tue Apr 30 10:46:07 2019
New Revision: 500474
URL: https://svnweb.freebsd.org/changeset/ports/500474

Log:
  net/onedrive: bug fix local patch
  
  While here, remove debug
  
  PR:		237638
  Submitted by:	Hiroo Ono <hiroo.ono+freebsd at gmail.com> (maintainer)

Modified:
  head/net/onedrive/Makefile   (contents, props changed)
  head/net/onedrive/files/freebsd_inotify.d

Modified: head/net/onedrive/Makefile
==============================================================================
--- head/net/onedrive/Makefile	Tue Apr 30 10:43:49 2019	(r500473)
+++ head/net/onedrive/Makefile	Tue Apr 30 10:46:07 2019	(r500474)
@@ -3,6 +3,7 @@
 PORTNAME=	onedrive
 DISTVERSIONPREFIX=	v
 DISTVERSION=	2.3.3
+PORTREVISION=	1
 CATEGORIES=	net
 
 MAINTAINER=	hiroo.ono+freebsd at gmail.com
@@ -19,7 +20,6 @@ USES=		gmake pkgconfig sqlite
 USE_GITHUB=	yes
 GH_ACCOUNT=	abraunegg
 
-DFLAGS+=		-g
 PKGCONFIG=		pkgconf
 MAKE_ARGS=		DC=ldc2
 INSTALL_TARGET=		install.noservice

Modified: head/net/onedrive/files/freebsd_inotify.d
==============================================================================
--- head/net/onedrive/files/freebsd_inotify.d	Tue Apr 30 10:43:49 2019	(r500473)
+++ head/net/onedrive/files/freebsd_inotify.d	Tue Apr 30 10:46:07 2019	(r500474)
@@ -12,7 +12,9 @@ struct inotify_event
 	uint32_t mask;   /* Watch mask.  */
 	uint32_t cookie; /* Cookie to synchronize two events.  */
 	uint32_t len;    /* Length (including NULLs) of name.  */
-	char[] name;     /* Name.  */
+	char[0] name;     /* Name.  */
+
+	@disable this(this);
 };
 
 


More information about the svn-ports-all mailing list