diff options
author | kris <kris@FreeBSD.org> | 2005-07-20 23:58:25 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-07-20 23:58:25 +0000 |
commit | 5bde6db19cffed259d102cdf1ba2605b59b0698f (patch) | |
tree | 6891f9f934c89580ee2c0790cbc33a2e6ff55e8a | |
parent | 7d859075ebd151ede844d4f4395b7313fc3868df (diff) | |
download | FreeBSD-ports-5bde6db19cffed259d102cdf1ba2605b59b0698f.zip FreeBSD-ports-5bde6db19cffed259d102cdf1ba2605b59b0698f.tar.gz |
BROKEN on amd64 and ia64: Does not compile
-rw-r--r-- | net/cnet/Makefile | 8 | ||||
-rw-r--r-- | www/mod_webapp/Makefile | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net/cnet/Makefile b/net/cnet/Makefile index fcefdc6..ccbe81c 100644 --- a/net/cnet/Makefile +++ b/net/cnet/Makefile @@ -22,6 +22,12 @@ USE_GMAKE= yes ALL_TARGET= # empty MAN1= cnet.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64 or ia64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|8.3|8.4|g ; \ s|83|84|g' ${WRKSRC}/src/Makefile.freebsd @@ -43,4 +49,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/DOC/images/* ${DOCSDIR}/images .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/www/mod_webapp/Makefile b/www/mod_webapp/Makefile index bc74f9f..24f5ec2 100644 --- a/www/mod_webapp/Makefile +++ b/www/mod_webapp/Makefile @@ -33,6 +33,10 @@ CONNECTORS_RELEASE= ${PORTVERSION} .include <bsd.port.pre.mk> +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not build on amd64 or ia64" +.endif + # Apache locations. APACHECTL?= ${LOCALBASE}/sbin/apachectl APR_LIB?= ${LOCALBASE}/lib/ |