diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:26:43 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:26:43 +0000 |
commit | feba77f64528a19ed7f5e05fe5fa0d3c475f2a69 (patch) | |
tree | b16118163a631ab8df2ef0d7081c9b761cb0cbba /math/matrix | |
parent | ef790344e635a311e4b948cd8dba9e189d058b96 (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/Makefile | 8 |
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> |