diff options
author | kris <kris@FreeBSD.org> | 2004-03-15 20:01:18 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-15 20:01:18 +0800 |
commit | c2f82e174ca6236edd83b7c586e4f830b5ce96c0 (patch) | |
tree | 81cedefb2e957f2035ff8afc61fcbb3fa19d5056 /graphics | |
parent | ad8fe9bed2fa56e4a107faa11398f2b852fc39f3 (diff) | |
download | freebsd-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/Makefile | 8 |
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> |