summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorobache <obache@pkgsrc.org>2008-12-21 12:09:42 +0000
committerobache <obache@pkgsrc.org>2008-12-21 12:09:42 +0000
commit3afdabb5f4d37dde1158c244edeb0d5d83587767 (patch)
tree4a71b23eacfc5d57ea7d4f4d9b9f3c670f3c7059 /sysutils
parentcf02deb34ca93e7f195c7904b637fdf5822912c5 (diff)
downloadpkgsrc-3afdabb5f4d37dde1158c244edeb0d5d83587767.tar.gz
Negative option name "nox11" should not be used, use "-x11" instead.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/dbus/options.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/dbus/options.mk b/sysutils/dbus/options.mk
index a5d5ad0e7c2..b3c2898597c 100644
--- a/sysutils/dbus/options.mk
+++ b/sysutils/dbus/options.mk
@@ -1,8 +1,8 @@
-# $NetBSD: options.mk,v 1.2 2008/06/19 01:56:44 bjs Exp $
+# $NetBSD: options.mk,v 1.3 2008/12/21 12:09:42 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.dbus
-PKG_SUPPORTED_OPTIONS+= debug kqueue nox11
-PKG_SUGGESTED_OPTIONS= # empty
+PKG_SUPPORTED_OPTIONS+= debug kqueue x11
+PKG_SUGGESTED_OPTIONS= x11
.if (${OPSYS} == "NetBSD" || \
${OPSYS} == "FreeBSD" || \
@@ -24,11 +24,11 @@ CONFIGURE_ARGS.enable+= kqueue
CONFIGURE_ARGS.disable+= kqueue
.endif
-.if !empty(PKG_OPTIONS:Mnox11)
-CONFIGURE_ARGS.without= x
-.else
+.if !empty(PKG_OPTIONS:Mx11)
CONFIGURE_ARGS.with+= x
. include "../../x11/libX11/buildlink3.mk"
BUILDLINK_DEPMETHOD.libXt= build
. include "../../x11/libXt/buildlink3.mk"
+.else
+CONFIGURE_ARGS.without= x
.endif