diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-04-15 16:26:15 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-04-15 16:26:15 +0000 |
commit | ec96adc1cf4bb73c1bd44d5aede64cfb7463ff3d (patch) | |
tree | 1c80168070910cb65865af39ca853c1e82671b85 | |
parent | . This port actually requires JDK 1.4 to build, JDK 1.3 won't cut it. (diff) |
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.
-rw-r--r-- | devel/libgtop2/Makefile | 8 |
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> |