diff options
author | shattered <shattered@pkgsrc.org> | 2010-11-07 15:24:50 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2010-11-07 15:24:50 +0000 |
commit | d287561e7edbae2b6d6959c321d8588fd5c18d98 (patch) | |
tree | 7208a6bad746d322b38ba467e687eed96e1a63ab /sysutils/dbus | |
parent | 73d53c66a7a320dc6b54f657f8762a5aaf387be4 (diff) | |
download | pkgsrc-d287561e7edbae2b6d6959c321d8588fd5c18d98.tar.gz |
kqueue is BSD-specific; add it to PKG_SUPPORTED_OPTIONS only on *BSD.
Diffstat (limited to 'sysutils/dbus')
-rw-r--r-- | sysutils/dbus/options.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysutils/dbus/options.mk b/sysutils/dbus/options.mk index b3c2898597c..b6916b30fe8 100644 --- a/sysutils/dbus/options.mk +++ b/sysutils/dbus/options.mk @@ -1,12 +1,13 @@ -# $NetBSD: options.mk,v 1.3 2008/12/21 12:09:42 obache Exp $ +# $NetBSD: options.mk,v 1.4 2010/11/07 15:24:50 shattered Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.dbus -PKG_SUPPORTED_OPTIONS+= debug kqueue x11 +PKG_SUPPORTED_OPTIONS+= debug x11 PKG_SUGGESTED_OPTIONS= x11 .if (${OPSYS} == "NetBSD" || \ ${OPSYS} == "FreeBSD" || \ ${OPSYS} == "OpenBSD") +PKG_SUPPORTED_OPTIONS+= kqueue PKG_SUGGESTED_OPTIONS+= kqueue .endif |