summaryrefslogtreecommitdiff
path: root/sysutils/bup/options.mk
blob: dac6b9b4c2f397377f9d0e7781094846f88d30aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $NetBSD: options.mk,v 1.2 2019/11/19 15:01:25 gdt Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.bup
PKG_SUPPORTED_OPTIONS=	fuse
# fuse is disabled by default because it doesn't build on Mac, and
# 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