blob: 26b59ef39a6f082cb2a9cd38f7cbaf7afc737bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: options.mk,v 1.1.1.1 2008/12/18 00:32:14 ahoka Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libunique
PKG_SUPPORTED_OPTIONS= dbus
PKG_SUGGESTED_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
|