diff options
author | Volker Stolz <vs@FreeBSD.org> | 2004-06-04 14:45:11 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2004-06-04 14:45:11 +0000 |
commit | f38cf18bea64d7ec0af29429175709ef853ab1d6 (patch) | |
tree | 62e995b5bae6e723c9bb7aaa9257834ec390b1c1 /audio | |
parent | Update to imap-2004. (diff) |
- Does not build on ia64 & sparc64 (inb/outb & friends)
- ffs()-clash only affects i386
Notes
Notes:
svn path=/head/; revision=110823
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpmf20/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/mpmf20/Makefile b/audio/mpmf20/Makefile index 5fc9909cea2a..6d21f75fc9cb 100644 --- a/audio/mpmf20/Makefile +++ b/audio/mpmf20/Makefile @@ -15,12 +15,14 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= File transfer tool for the MPMan MP-F20 portable MP3-player +NOT_FOR_ARCHS= ia64 sparc64 + MAKEFILE= makefile PLIST_FILES= bin/mpmf20 .include <bsd.port.pre.mk> -.if ${OSVERSION} > 500000 && ${OSVERSION} < 502108 +.if ${ARCH} == i386 && ${OSVERSION} > 500000 && ${OSVERSION} < 502108 BROKEN= "ffs() clash, see i386/41930" .endif |