aboutsummaryrefslogtreecommitdiff
path: root/audio/fluidsynth
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-02-23 21:51:30 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-02-23 21:51:30 +0000
commitbbd98c96f67df54e789acde95915a69c63fbabc4 (patch)
tree8f9fe95967690e4b449c4e03d0db4e010f84f5e5 /audio/fluidsynth
parente8e6e56a032463d97eea76401603d65e4d2f2684 (diff)
BROKEN on !i386 and !amd64: Does not compile.
Notes
Notes: svn path=/head/; revision=101900
Diffstat (limited to 'audio/fluidsynth')
-rw-r--r--audio/fluidsynth/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/fluidsynth/Makefile b/audio/fluidsynth/Makefile
index 13f997510334..4792d04bc01a 100644
--- a/audio/fluidsynth/Makefile
+++ b/audio/fluidsynth/Makefile
@@ -24,8 +24,14 @@ CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" LIBS="${PTHREAD_LIBS}"
MAN1= fluidsynth.1
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} != "i386" && ${ARCH} != "amd64"
+BROKEN= "Does not compile on !i386 and !amd64"
+.endif
+
post-patch:
@${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>