summaryrefslogtreecommitdiff
path: root/sysutils/bup/options.mk
blob: 05a40a67196271941a6da138fd63e5a9faac21ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $NetBSD: options.mk,v 1.1 2014/03/19 12:54:02 gdt Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.bup
PKG_SUPPORTED_OPTIONS=	fuse
# fuse is disabled by default because it doesn't build on Mac, ad
# because the fuse implementation in bup doesn't work on NetBSD.
# After it's fixed upstream, an OS-specific default is probably
# appropriate.
PKG_SUGGESTED_OPTIONS=

.include "../../mk/bsd.prefs.mk"

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mfuse)
.include "../../filesystems/py-fuse-bindings/buildlink3.mk"
.endif