diff options
author | wiz <wiz@pkgsrc.org> | 2006-12-06 10:17:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-12-06 10:17:03 +0000 |
commit | fe513e2b85ed8b0ee0fcb539747138a51a4fa956 (patch) | |
tree | 10d53bc4dba8d5995df3d0342555a3f6823a3032 /x11/gtk2 | |
parent | dbbe3b0d36813ea64e67c380c38d1c280130c556 (diff) | |
download | pkgsrc-fe513e2b85ed8b0ee0fcb539747138a51a4fa956.tar.gz |
Always support the x11 option, not only when alternatives are available.
This way the test for the x11 option in buildlink3.mk has a chance
to succeed.
Diffstat (limited to 'x11/gtk2')
-rw-r--r-- | x11/gtk2/options.mk | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/x11/gtk2/options.mk b/x11/gtk2/options.mk index b3a1f09eecd..f12981a7ee0 100644 --- a/x11/gtk2/options.mk +++ b/x11/gtk2/options.mk @@ -1,12 +1,13 @@ -# $NetBSD: options.mk,v 1.2 2006/12/05 21:26:59 minskim Exp $ +# $NetBSD: options.mk,v 1.3 2006/12/06 10:17:03 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gtk2+ PKG_SUPPORTED_OPTIONS= debug -.if exists(/System/Library/Frameworks/Quartz.framework) PKG_OPTIONS_REQUIRED_GROUPS= gdk-target -PKG_OPTIONS_GROUP.gdk-target= quartz x11 -PKG_SUGGESTED_OPTIONS= x11 +PKG_OPTIONS_GROUP.gdk-target= x11 +.if exists(/System/Library/Frameworks/Quartz.framework) +PKG_OPTIONS_GROUP.gdk-target+= quartz .endif +PKG_SUGGESTED_OPTIONS= x11 .include "../../mk/bsd.options.mk" |