aboutsummaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2004-03-15 20:01:18 +0800
committerkris <kris@FreeBSD.org>2004-03-15 20:01:18 +0800
commitc2f82e174ca6236edd83b7c586e4f830b5ce96c0 (patch)
tree81cedefb2e957f2035ff8afc61fcbb3fa19d5056 /graphics
parentad8fe9bed2fa56e4a107faa11398f2b852fc39f3 (diff)
downloadfreebsd-ports-gnome-c2f82e174ca6236edd83b7c586e4f830b5ce96c0.tar.gz
freebsd-ports-gnome-c2f82e174ca6236edd83b7c586e4f830b5ce96c0.tar.zst
freebsd-ports-gnome-c2f82e174ca6236edd83b7c586e4f830b5ce96c0.zip
BROKEN on amd64: Does not compile (shared libraries need to be compiled with -fPIC)
Diffstat (limited to 'graphics')
-rw-r--r--graphics/IPA/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/IPA/Makefile b/graphics/IPA/Makefile
index 662d25ce6dc5..d75aa0133f10 100644
--- a/graphics/IPA/Makefile
+++ b/graphics/IPA/Makefile
@@ -19,7 +19,13 @@ RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "amd64"
+BROKEN= "Does not compile on amd64 (shared libraries need to be compiled with -fPIC)"
+.endif
+
do-configure:
@(cd ${WRKSRC} ; ${PERL} ./${CONFIGURE_SCRIPT})
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>