aboutsummaryrefslogtreecommitdiff
path: root/math/matrix
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-06-19 09:26:43 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-06-19 09:26:43 +0000
commitfeba77f64528a19ed7f5e05fe5fa0d3c475f2a69 (patch)
treeb16118163a631ab8df2ef0d7081c9b761cb0cbba /math/matrix
parentef790344e635a311e4b948cd8dba9e189d058b96 (diff)
BROKEN on amd64: Shared libraries must be compiled with -fPIC
Notes
Notes: svn path=/head/; revision=111800
Diffstat (limited to 'math/matrix')
-rw-r--r--math/matrix/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/math/matrix/Makefile b/math/matrix/Makefile
index 85f2ae3495c8..5b6b0a8c41a8 100644
--- a/math/matrix/Makefile
+++ b/math/matrix/Makefile
@@ -20,4 +20,10 @@ USE_ZIP= yes
INSTALLS_SHLIB= yes
PLIST_SUB= LIBVERSION=1
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "amd64"
+BROKEN= "Does not build on amd64 (shared libraries must be compiled with -fPIC)"
+.endif
+
+.include <bsd.port.post.mk>