Ticket #49228: ffmpeg.Portfile.diff

File ffmpeg.Portfile.diff, 632 bytes (added by johnrosshunt@…, 9 years ago)

Need to patch ffmpeg as well

  • Portfile

    old new  
    147147        configure.args-append --disable-asm
    148148    }
    149149
    150     # VDA (video hardware acceleration, mostly H264) is only supported on 10.6.3+ up to (excluding) 10.11.
    151     if {(${os.major} > 10 || (${os.major} == 10 && ${os.minor} >= 3)) && (${os.major} < 15)} {
     150    # VDA (video hardware acceleration, mostly H264) is only supported on 10.6.3+
     151    if {${os.major} > 10 || (${os.major} == 10 && ${os.minor} >= 3)} {
    152152        configure.args-delete --disable-vda
    153153        configure.args-append --enable-vda
    154154    }