diff options
author | asau <asau> | 2012-09-27 06:12:09 +0000 |
---|---|---|
committer | asau <asau> | 2012-09-27 06:12:09 +0000 |
commit | cedb4195c2b8909e873666ab70281de6f66a2923 (patch) | |
tree | 0b5a171b98eda09f147220574adce768644e2eef /x11 | |
parent | 645ba4fcd6e91ff19f56a52e5287ee4e049977af (diff) | |
download | pkgsrc-cedb4195c2b8909e873666ab70281de6f66a2923.tar.gz |
Disable DTrace support on NetBSD too. Fixes build on NetBSD with MKDTRACE set.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/modular-xorg-server/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/modular-xorg-server/Makefile b/x11/modular-xorg-server/Makefile index fa69656c496..f0398d41713 100644 --- a/x11/modular-xorg-server/Makefile +++ b/x11/modular-xorg-server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2012/04/17 17:52:01 joerg Exp $ +# $NetBSD: Makefile,v 1.69 2012/09/27 06:12:09 asau Exp $ # DISTNAME= xorg-server-1.6.5 @@ -48,6 +48,9 @@ CONFIGURE_ARGS+= --with-vendor-name-short="pkgsrc" CONFIGURE_ARGS+= --with-builder-addr="tech-x11@NetBSD.org" CONFIGURE_ARGS+= --with-os-vendor="The NetBSD Foundation" .endif +.if ${OPSYS} == "NetBSD" +CONFIGURE_ARGS+= --without-dtrace +.endif .if ${OPSYS} == "FreeBSD" CONFIGURE_ARGS+= --without-dtrace .endif |