Ticket #36942: Portfile.ffmpeg_1.0_2.diff
File Portfile.ffmpeg_1.0_2.diff, 852 bytes (added by ccarey@…, 12 years ago) |
---|
-
Portfile
old new 66 66 port:libtheora \ 67 67 port:libmodplug \ 68 68 port:jack \ 69 port:dirac \70 69 port:schroedinger \ 71 70 port:openjpeg \ 72 71 port:freetype \ … … 132 131 # absence of altivec is not automatically detected 133 132 if {[catch {sysctl hw.vectorunit} result] || $result == 0} { 134 133 configure.args-append --disable-altivec 134 } else { 135 # the compile-time presence of Altivec can be automatically detected if the --cpu option is provided 136 if {[catch {machine} machine] == 1} { 137 if {$machine eq "ppc7450"} { 138 configure.args-append --cpu=ppc7450 139 } 140 } 135 141 } 136 142 } 137 143