blob: 59886a265567ff451eb4502b91159c25d31e6513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: options.mk,v 1.1 2012/07/04 18:04:44 drochner Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xcowsay
PKG_SUPPORTED_OPTIONS= dbus
.include "../../mk/bsd.options.mk"
#
# D-BUS support
#
.if !empty(PKG_OPTIONS:Mdbus)
CONFIGURE_ARGS+= --enable-dbus
. include "../../sysutils/dbus-glib/buildlink3.mk"
.endif
|