summaryrefslogtreecommitdiff
path: root/audio/xsidplay
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2001-03-11 05:01:04 +0000
committerSteve Price <steve@FreeBSD.org>2001-03-11 05:01:04 +0000
commit0d5a0510ea42cb90289022a374b3bd9a01d411c3 (patch)
treea326bb0e8855087051ccc0f6dcae9cf4649144b4 /audio/xsidplay
parentUse '-O0' on the Alpha so this builds without internal compiler errors. (diff)
Use '-O0' when compiling on the Alpha to avoid internal compiler errors.
Notes
Notes: svn path=/head/; revision=39541
Diffstat (limited to 'audio/xsidplay')
-rw-r--r--audio/xsidplay/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/xsidplay/Makefile b/audio/xsidplay/Makefile
index 781e26f78bd3..19e5f8123993 100644
--- a/audio/xsidplay/Makefile
+++ b/audio/xsidplay/Makefile
@@ -30,7 +30,13 @@ CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/qt2 \
--with-x-includes=${X11BASE}/include \
--with-x-libraries=${X11BASE}/lib
+.include <bsd.port.pre.mk>
+
+.if ${MACHINE_ARCH} == "alpha"
+CFLAGS+= -O0
+.endif
+
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>