aboutsummaryrefslogtreecommitdiff
path: root/audio/flite
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2004-12-20 19:08:12 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2004-12-20 19:08:12 +0000
commit3575313f1663e06e6bc8d23d8cfe20bd27fbe804 (patch)
tree2039162ab0d5c065aef71c7f05db3cab91c1fb0a /audio/flite
parent672a2608fb2a9c7f2a585a0bc8608658e23ce183 (diff)
downloadports-3575313f1663e06e6bc8d23d8cfe20bd27fbe804.tar.gz
ports-3575313f1663e06e6bc8d23d8cfe20bd27fbe804.zip
Force compiling with -O0, otherwise sometimes it blows out with SIGBUS, at
least on 5-STABLE.
Notes
Notes: svn path=/head/; revision=124617
Diffstat (limited to 'audio/flite')
-rw-r--r--audio/flite/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/flite/Makefile b/audio/flite/Makefile
index 152071c67b75..9ccf22ceebcf 100644
--- a/audio/flite/Makefile
+++ b/audio/flite/Makefile
@@ -7,6 +7,7 @@
PORTNAME= flite
PORTVERSION= 1.2
+PORTREVISION= 1
CATEGORIES= audio
MASTER_SITES= http://www.speech.cs.cmu.edu/flite/packed/${PKGNAME}/
DISTNAME= ${PKGNAME}-release
@@ -20,4 +21,8 @@ GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared=yes
INSTALLS_SHLIB= yes
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+CFLAGS:= ${CFLAGS:N-O:N-O[0123456789]} -O0
+
+.include <bsd.port.post.mk>