diff options
| author | Steve Wills <swills@FreeBSD.org> | 2019-04-30 10:46:07 +0000 |
|---|---|---|
| committer | Steve Wills <swills@FreeBSD.org> | 2019-04-30 10:46:07 +0000 |
| commit | f66a34e8334649c3f0b286f20b67d826b97519e8 (patch) | |
| tree | c26422e7572ad4a30a05e7c30f71762f9e89a47c /net/onedrive | |
| parent | 5ff375083bd37ccac6a9836f92aee54ba233126e (diff) | |
Notes
Diffstat (limited to 'net/onedrive')
| -rw-r--r-- | net/onedrive/Makefile | 2 | ||||
| -rw-r--r-- | net/onedrive/files/freebsd_inotify.d | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/net/onedrive/Makefile b/net/onedrive/Makefile index 2cf47b577153..e5e65221788e 100644 --- a/net/onedrive/Makefile +++ b/net/onedrive/Makefile @@ -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 diff --git a/net/onedrive/files/freebsd_inotify.d b/net/onedrive/files/freebsd_inotify.d index cb3c3c4036b7..4892e990e7fb 100644 --- a/net/onedrive/files/freebsd_inotify.d +++ b/net/onedrive/files/freebsd_inotify.d @@ -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); }; |
