pkgsrc-wip/vino/options.mk
Thomas Klausner 6693c15726 Import of vino-2.26.2, update for vino-2.24.1, but doesn't compile on
NetBSD because of missing struct lifreq and similar complaints.
2009-08-21 15:54:56 +00:00

20 lines
469 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2009/08/21 15:54:56 thomasklausner Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.vino
PKG_SUPPORTED_OPTIONS+= avahi inet6
PKG_SUGGESTED_OPTIONS+= avahi
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mavahi)
CONFIGURE_ARGS+= --enable-avahi
.include "../../net/avahi/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-avahi
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif