diff options
Diffstat (limited to 'emulators/qemu/options.mk')
-rw-r--r-- | emulators/qemu/options.mk | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/emulators/qemu/options.mk b/emulators/qemu/options.mk index e7fbed3df64..551f8a9f564 100644 --- a/emulators/qemu/options.mk +++ b/emulators/qemu/options.mk @@ -1,17 +1,21 @@ -# $NetBSD: options.mk,v 1.5 2018/08/14 06:57:26 adam Exp $ +# $NetBSD: options.mk,v 1.5.14.1 2020/01/27 10:59:04 bsiegert Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.qemu PKG_SUPPORTED_OPTIONS= gtk3 sdl .include "../../mk/bsd.fast.prefs.mk" +.if ${OPSYS} == "Linux" +PKG_SUPPORTED_OPTIONS+= virtfs-proxy-helper +.endif + .if ${OPSYS} != "Darwin" PKG_SUGGESTED_OPTIONS+= sdl .endif .include "../../mk/bsd.options.mk" -PLIST_VARS+= gtk +PLIST_VARS+= gtk virtfs-proxy-helper .if !empty(PKG_OPTIONS:Mgtk3) PLIST.gtk= yes @@ -27,3 +31,12 @@ CONFIGURE_ARGS+= --enable-sdl .else CONFIGURE_ARGS+= --disable-sdl .endif + +# NB to successfully build virtfs-proxy-helper, the upstream Linux +# header/development libraries for libcap and libattr must be installed. +.if !empty(PKG_OPTIONS:Mvirtfs-proxy-helper) +PLIST.virtfs-proxy-helper= yes +CONFIGURE_ARGS+= --enable-virtfs +.else +CONFIGURE_ARGS+= --disable-virtfs +.endif |