CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2021/07/10 05:49:34
Modified files:
x11/mplayer : Makefile
Log message:
mplayer: fix the runtime on powerpc G3s
Brad sent me a diff to rearrange CONFIGURE_ARGS for powerpc. Runtime testing on
a G3 machine led to SIGILLs.
The runtime cpu detection configure flag enables the '-maltivec' compiler flag
by default, leading to the execution of altivec instructions unconditionally at
runtime. They are not supported on G3s, so fix that issue by disabling the
runtime cpu detection feature.
OK Brad (maintainer)