Sun Sep 2 13:02:14 2012 UTC ()
Darwin supports kqueue(2), too.


(shattered)
diff -r1.6 -r1.7 pkgsrc/sysutils/dbus/options.mk

cvs diff -r1.6 -r1.7 pkgsrc/sysutils/dbus/options.mk (expand / switch to unified diff)

--- pkgsrc/sysutils/dbus/options.mk 2012/08/01 17:52:21 1.6
+++ pkgsrc/sysutils/dbus/options.mk 2012/09/02 13:02:13 1.7
@@ -1,22 +1,23 @@ @@ -1,22 +1,23 @@
1# $NetBSD: options.mk,v 1.6 2012/08/01 17:52:21 drochner Exp $ 1# $NetBSD: options.mk,v 1.7 2012/09/02 13:02:13 shattered Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.dbus 3PKG_OPTIONS_VAR= PKG_OPTIONS.dbus
4PKG_SUPPORTED_OPTIONS+= debug x11 4PKG_SUPPORTED_OPTIONS+= debug x11
5PKG_SUGGESTED_OPTIONS= x11 5PKG_SUGGESTED_OPTIONS= x11
6 6
7.if (${OPSYS} == "NetBSD" || \ 7.if (${OPSYS} == "NetBSD" || \
8 ${OPSYS} == "FreeBSD" || \ 8 ${OPSYS} == "FreeBSD" || \
9 ${OPSYS} == "OpenBSD" || \ 9 ${OPSYS} == "OpenBSD" || \
 10 ${OPSYS} == "Darwin" || \
10 ${OPSYS} == "DragonFly") 11 ${OPSYS} == "DragonFly")
11PKG_SUPPORTED_OPTIONS+= kqueue 12PKG_SUPPORTED_OPTIONS+= kqueue
12PKG_SUGGESTED_OPTIONS+= kqueue 13PKG_SUGGESTED_OPTIONS+= kqueue
13.endif 14.endif
14 15
15.include "../../mk/bsd.options.mk" 16.include "../../mk/bsd.options.mk"
16 17
17.if !empty(PKG_OPTIONS:Mdebug) 18.if !empty(PKG_OPTIONS:Mdebug)
18CONFIGURE_ARGS.enable+= asserts verbose-mode 19CONFIGURE_ARGS.enable+= asserts verbose-mode
19.else 20.else
20CONFIGURE_ARGS.disable+= asserts verbose-mode 21CONFIGURE_ARGS.disable+= asserts verbose-mode
21.endif 22.endif
22 23