Index: Makefile
===================================================================
RCS file: /cvs/ports/audio/flite/Makefile,v
retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- Makefile 12 Jul 2019 21:02:13 -0000 1.23
+++ Makefile 25 Oct 2020 15:02:17 -0000
@@ -1,8 +1,6 @@
# $OpenBSD: Makefile,v 1.23 2019/07/12 21:02:13 sthen Exp $
BROKEN-m88k= out of memory compiling cmu_us_kal_diphone.c
-BROKEN-mips64= GCC hangs compiling cmu_us_kal_diphone.c
-BROKEN-mips64el= GCC hangs compiling cmu_us_kal_diphone.c
COMMENT= text to speech utility
@@ -32,6 +30,11 @@ PERMIT_PACKAGE= Yes
WANTLIB= c m sndio
MASTER_SITES= http://www.speech.cs.cmu.edu/flite/packed/flite-${VERSION}/
+
+# GCC 4.2.1 hangs compiling cmu_us_kal_diphone.c
+.if ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
+COMPILER= base-clang ports-gcc
+.endif
CONFIGURE_STYLE= gnu dest
CONFIGURE_ARGS= --enable-shared --with-audio=sndio
Hi,
The attached diff unbreaks audio/flite on mips64*.
Just using base-clang or port-gcc there is enough for it to build.
No REVISION bump, since it only changes something for the BROKEN*
archs.
Donovan
No comments:
Post a Comment