diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 10:12:34 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 10:12:34 +0000 |
commit | fb7b365350fcf0dd53e839ee9bf85472c9f79b07 (patch) | |
tree | ac609749a265731d7278636787954e63fb7717f7 /audio | |
parent | BROKEN on amd64 and ia64: Does not compile (diff) |
BROKEN on amd64 and ia64: Needs -fPIC
Notes
Notes:
svn path=/head/; revision=103864
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmms-musepack/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/xmms-musepack/Makefile b/audio/xmms-musepack/Makefile index e98038c4a430..c3292642dbcd 100644 --- a/audio/xmms-musepack/Makefile +++ b/audio/xmms-musepack/Makefile @@ -22,7 +22,13 @@ USE_GMAKE= yes USE_GNOME= gtk12 USE_LIBTOOL= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64 (needs -fPIC)" +.endif + post-install: ${STRIP_CMD} ${PREFIX}/lib/xmms/Input/xmms-mpegplus-1.8.0.so -.include <bsd.port.mk> +.include <bsd.port.post.mk> |