Index: Makefile =================================================================== RCS file: /cvsroot/pkgsrc/audio/libsbsms/Makefile,v retrieving revision 1.4 diff -p -u -r1.4 Makefile --- Makefile 4 Mar 2018 18:26:42 -0000 1.4 +++ Makefile 10 Nov 2018 23:39:16 -0000 @@ -9,11 +9,6 @@ HOMEPAGE= http://sbsms.sourceforge.net/ COMMENT= Subband Sinusoidal Modeling Synthesis LICENSE= gnu-gpl-v2 -# configure script demands -msse; should be taught to use altivec and -# whatever else on other platforms. Except where nonexistent. -BROKEN_EXCEPT_ON_PLATFORM= *-*-i386 *-*-x86_64 -NOT_FOR_PLATFORM= *-*-m68k - GNU_CONFIGURE= yes USE_LIBTOOL= yes USE_TOOLS+= pkg-config @@ -22,4 +17,8 @@ USE_LANGUAGES= c c++ PKGCONFIG_OVERRIDE+= sbsms.pc.in CONFIGURE_ARGS+= --enable-shared=yes +.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "x86_64" +CONFIGURE_ARGS+= --disable-sse +.endif + .include "../../mk/bsd.pkg.mk"