diff options
author | kris <kris@FreeBSD.org> | 2004-11-19 06:31:18 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-19 06:31:18 +0800 |
commit | cd8961d8599fd3b24c07bb99d853f48c5723bb78 (patch) | |
tree | fba76d832a4de2b5755010780b4691ce753d180e | |
parent | 84b8672eac53042f586b99dc9c1efcf40b03d075 (diff) | |
download | freebsd-ports-gnome-cd8961d8599fd3b24c07bb99d853f48c5723bb78.tar.gz freebsd-ports-gnome-cd8961d8599fd3b24c07bb99d853f48c5723bb78.tar.zst freebsd-ports-gnome-cd8961d8599fd3b24c07bb99d853f48c5723bb78.zip |
BROKEN on sparc64: Does not compile
-rw-r--r-- | devel/xxgdb/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/xxgdb/Makefile b/devel/xxgdb/Makefile index 85c238ce03cc..1acd19ee91a2 100644 --- a/devel/xxgdb/Makefile +++ b/devel/xxgdb/Makefile @@ -17,6 +17,12 @@ COMMENT= An X window interface for gdb USE_IMAKE= yes MAN1= xxgdb.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not compile on sparc64" +.endif + # This isn't included in the original Imakefile for some reason. # Yes, I know this will recompile the program every time, but # we have the cookie anyway and it's much easier this way @@ -27,4 +33,4 @@ post-build: post-install: ${INSTALL_PROGRAM} ${WRKSRC}/xxgdbiowin ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |