diff options
author | kris <kris@FreeBSD.org> | 2004-03-18 20:39:12 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-18 20:39:12 +0800 |
commit | bc27c28c36ee440a691bd5df2bffd85bc8fed330 (patch) | |
tree | d147aa6926ca8a918f65f9138bc00bd62da18371 /math | |
parent | fba0574f21ad116fe7e72d096ee923d81511fdfc (diff) | |
download | freebsd-ports-gnome-bc27c28c36ee440a691bd5df2bffd85bc8fed330.tar.gz freebsd-ports-gnome-bc27c28c36ee440a691bd5df2bffd85bc8fed330.tar.zst freebsd-ports-gnome-bc27c28c36ee440a691bd5df2bffd85bc8fed330.zip |
BROKEN on amd64 and ia64: Does not compile
Diffstat (limited to 'math')
-rw-r--r-- | math/it++/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/it++/Makefile b/math/it++/Makefile index a97308b768bc..ec900b24b50c 100644 --- a/math/it++/Makefile +++ b/math/it++/Makefile @@ -24,6 +24,12 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS= opt USE_GMAKE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64" +.endif + post-patch: @${REINPLACE_CMD} -e "s|sparc|__sparc__|" \ -e "s|alpha|__alpha__|" ${WRKSRC}/include/base/machdep.h @@ -34,4 +40,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/lib/libit++.a ${PREFIX}/lib ${CP} -R ${WRKSRC}/include ${PREFIX}/include/it++ -.include <bsd.port.mk> +.include <bsd.port.post.mk> |