svn commit: r503360 - head/audio/audacity
Piotr Kubaj
pkubaj at FreeBSD.org
Mon Jun 3 08:52:29 UTC 2019
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 at 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}
More information about the svn-ports-head
mailing list