diff options
author | kris <kris@FreeBSD.org> | 2004-03-04 17:19:10 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-04 17:19:10 +0800 |
commit | e5ea52e0afe3b07fb69ea7ebead34cf6aece8ab4 (patch) | |
tree | 41505f7d0a2f48f9edb4a62220477837a1203bb0 /devel/libcii | |
parent | 3cf4a28cd89fa19ff84f8f87f4d3c05f0d339573 (diff) | |
download | freebsd-ports-gnome-e5ea52e0afe3b07fb69ea7ebead34cf6aece8ab4.tar.gz freebsd-ports-gnome-e5ea52e0afe3b07fb69ea7ebead34cf6aece8ab4.tar.zst freebsd-ports-gnome-e5ea52e0afe3b07fb69ea7ebead34cf6aece8ab4.zip |
BROKEN on !i386 and !alpha: Does not compile
Diffstat (limited to 'devel/libcii')
-rw-r--r-- | devel/libcii/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/libcii/Makefile b/devel/libcii/Makefile index a7244f81abb8..167ceac0408a 100644 --- a/devel/libcii/Makefile +++ b/devel/libcii/Makefile @@ -29,6 +29,12 @@ CIIDEST= ${PREFIX}/lib/cii SAMPLES= double calc ids mpcalc wf xref cref iref kref \ idents words basename dirname sort spin sieve +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "alpha" +BROKEN= "Does not compile on !i386 and !alpha" +.endif + pre-build: @${MKDIR} ${CIIBUILD} @${MKDIR} ${CIIBUILD}/include @@ -67,4 +73,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/src/* ${PREFIX}/share/doc/cii/src .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |