Date: Mon, 3 Jun 2019 08:52:28 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503360 - head/audio/audacity Message-ID: <201906030852.x538qSFK064670@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Mon Jun 3 08:52:28 2019 New Revision: 503360 URL: https://svnweb.freebsd.org/changeset/ports/503360 Log: audio/audacity: fix build on non-x86 Audacity by default adds --enable-sse on all architectures, which breaks anything but i386 and amd64. Add SSE option to every architecture, but still enable by default only on amd64 and i386. This will add --disable-sse to CONFIGURE_ARGS, which fixes build. PR: 238140 Approved by: xxjack12xx@gmail.com (maintainer), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D20422 Modified: head/audio/audacity/Makefile Modified: head/audio/audacity/Makefile ============================================================================== --- head/audio/audacity/Makefile Mon Jun 3 08:47:18 2019 (r503359) +++ head/audio/audacity/Makefile Mon Jun 3 08:52:28 2019 (r503360) @@ -12,9 +12,6 @@ COMMENT= GUI editor for digital audio waveforms LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt -BROKEN_aarch64= fails to configure: checking whether C++ compiler accepts -msse... no -BROKEN_powerpc64= fails to build - BUILD_DEPENDS= autogen:devel/autogen \ bash:shells/bash \ cmake:devel/cmake @@ -43,12 +40,10 @@ USE_GITHUB= yes OPTIONS_DEFINE= DEBUG DOCS DYNLOAD FFMPEG FLAC ID3TAG LADSPA LAME LV2 \ MAD MOD_NYQ_BENCH MOD_SCRIPT_PIPE NLS SBSMS SOUNDTOUCH \ - STATIC_WX TWOLAME VAMP VORBIS VST + SSE STATIC_WX TWOLAME VAMP VORBIS VST OPTIONS_DEFAULT= FLAC ID3TAG LADSPA MAD SBSMS SOUNDTOUCH TWOLAME VAMP \ VORBIS VST -OPTIONS_DEFINE_amd64= SSE -OPTIONS_DEFINE_i386= SSE OPTIONS_DEFAULT_amd64= SSE OPTIONS_DEFAULT_i386= ${MACHINE_CPU:tu:MSSE}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906030852.x538qSFK064670>