pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/audio/audacity



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Oct 20 09:59:13 UTC 2019

Modified Files:
        pkgsrc/audio/audacity: Makefile

Log Message:
audacity: Disable SSE on non-x86


To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.125 pkgsrc/audio/audacity/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/audio/audacity/Makefile
diff -u pkgsrc/audio/audacity/Makefile:1.124 pkgsrc/audio/audacity/Makefile:1.125
--- pkgsrc/audio/audacity/Makefile:1.124        Tue Sep  3 01:43:10 2019
+++ pkgsrc/audio/audacity/Makefile      Sun Oct 20 09:59:13 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.124 2019/09/03 01:43:10 mrg Exp $
+# $NetBSD: Makefile,v 1.125 2019/10/20 09:59:13 nia Exp $
 
 DISTNAME=              audacity-2.3.2
 PKGREVISION=           1
@@ -64,6 +64,10 @@ CONFIGURE_ENV+=              ac_cv_header_pa_linux_a
 CXXFLAGS+=     -march=i586
 .endif
 
+.if ${MACHINE_ARCH} != "i386" && ${MACHINE_ARCH} != "x86_64"
+CONFIGURE_ARGS+=       --disable-sse
+.endif
+
 .include "../../mk/oss.buildlink3.mk"
 
 .if !empty(OSS_TYPE) && ${OSS_TYPE} != "none"
@@ -72,9 +76,9 @@ CONFIGURE_ARGS+=      --with-oss
 CONFIGURE_ARGS+=       --without-oss
 .endif
 
-CONFIG_GUESS_OVERRIDE=         \
+CONFIG_GUESS_OVERRIDE= \
        config.guess */config.guess */*/config.guess */*/*/config.guess
-CONFIG_SUB_OVERRIDE=           \
+CONFIG_SUB_OVERRIDE= \
        config.sub */config.sub */*/config.sub */*/*/config.sub
 
 CFLAGS.SunOS+= -fPIC



Home | Main Index | Thread Index | Old Index