69a3663061
Fuse support being on breaks the build on mac, where our wrappers for OSXFUSE seem not quite right, and fuse support doesn't work on NetBSD. ok wiz@ (as MAINTAINER).
17 lines
521 B
Makefile
17 lines
521 B
Makefile
# $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
|