aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2004-04-16 00:26:15 +0800
committermarcus <marcus@FreeBSD.org>2004-04-16 00:26:15 +0800
commit2937e26dbf370cf6e7ddab6826ab9d0d842b941e (patch)
tree740474755fa615fc74f151c75ab7e4f6c22c9596 /devel
parente7190bec49dbc32031109ce61a56004bb8cd2f8c (diff)
downloadfreebsd-ports-gnome-2937e26dbf370cf6e7ddab6826ab9d0d842b941e.tar.gz
freebsd-ports-gnome-2937e26dbf370cf6e7ddab6826ab9d0d842b941e.tar.zst
freebsd-ports-gnome-2937e26dbf370cf6e7ddab6826ab9d0d842b941e.zip
Add --without-x on amd64 to fix the build. This is only temporary.
Hopefully the next incarnation of X will have more shared libraries, and thus this problem will no longer occur. I think this patch was originally submitted by arved.
Diffstat (limited to 'devel')
-rw-r--r--devel/libgtop2/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/libgtop2/Makefile b/devel/libgtop2/Makefile
index 7f3e435d7184..efe8940018ef 100644
--- a/devel/libgtop2/Makefile
+++ b/devel/libgtop2/Makefile
@@ -31,8 +31,14 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
INFO= libgtop2
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "amd64"
+CONFIGURE_ARGS+= --without-x
+.endif
+
post-install:
@${CHGRP} kmem ${PREFIX}/bin/libgtop_server2
@${CHMOD} 2555 ${PREFIX}/bin/libgtop_server2
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>