[123883] trunk/dports/multimedia/mpv/Portfile

ryandesign at macports.org ryandesign at macports.org
Fri Aug 15 11:29:27 PDT 2014


Revision: 123883
          https://trac.macports.org/changeset/123883
Author:   ryandesign at macports.org
Date:     2014-08-15 11:29:27 -0700 (Fri, 15 Aug 2014)
Log Message:
-----------
mpv: fix OS version comparison on 10.6 and earlier (#44649)

Modified Paths:
--------------
    trunk/dports/multimedia/mpv/Portfile

Modified: trunk/dports/multimedia/mpv/Portfile
===================================================================
--- trunk/dports/multimedia/mpv/Portfile	2014-08-15 18:12:06 UTC (rev 123882)
+++ trunk/dports/multimedia/mpv/Portfile	2014-08-15 18:29:27 UTC (rev 123883)
@@ -112,7 +112,7 @@
                     "
 
     # VDA (video hardware acceleration, mostly H264) is only supported on 10.6.3+
-    if {${os.major} > 10 || {${os.major} == 10 && ${os.minor} >= 3}} {
+    if {${os.major} > 10 || (${os.major} == 10 && ${os.minor} >= 3)} {
         configure.args-delete   --disable-vda-hwaccel \
                                 --disable-vda-gl
         configure.args-append   --enable-vda-hwaccel \
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140815/196ecace/attachment.html>


More information about the macports-changes mailing list