Date: Tue, 30 Apr 2019 10:46:07 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500474 - in head/net/onedrive: . files Message-ID: <201904301046.x3UAk7sb059208@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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); };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904301046.x3UAk7sb059208>