[147062] trunk/dports/audio/wavpack/Portfile

devans at macports.org devans at macports.org
Thu Mar 24 12:08:34 PDT 2016


Revision: 147062
          https://trac.macports.org/changeset/147062
Author:   devans at macports.org
Date:     2016-03-24 12:08:34 -0700 (Thu, 24 Mar 2016)
Log Message:
-----------
wavpack: just disable asm optimizations on 10.6 and earlier.

Modified Paths:
--------------
    trunk/dports/audio/wavpack/Portfile

Modified: trunk/dports/audio/wavpack/Portfile
===================================================================
--- trunk/dports/audio/wavpack/Portfile	2016-03-24 18:43:00 UTC (rev 147061)
+++ trunk/dports/audio/wavpack/Portfile	2016-03-24 19:08:34 UTC (rev 147062)
@@ -2,7 +2,6 @@
 # $Id$
 
 PortSystem          1.0
-PortGroup           compiler_blacklist_versions 1.0
 
 name                wavpack
 version             4.75.2
@@ -27,8 +26,12 @@
 
 depends_lib         port:libiconv
 
-compiler.blacklist  *gcc* {clang < 300}
+# asm optimizations fail on 10.6
 
+if {${os.platform} eq "darwin" && ${os.major} < 11} {
+    configure.args  --disable-asm
+}
+
 livecheck.type      regex
 livecheck.url       ${homepage}/downloads.html
 livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20160324/cfde90e8/attachment.html>


More information about the macports-changes mailing list