search for: 258de40

Displaying 1 result from an estimated 1 matches for "258de40".

Did you mean: 258d250
2013 Dec 04
1
[PATCH] Fix Makefile.am altivec logic
...so only enable them when it's 100% sure that the target has it. Signed-off-by: Gustavo Zacarias <gustavo at zacarias.com.ar> --- src/libFLAC/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libFLAC/Makefile.am b/src/libFLAC/Makefile.am index 247e33c..258de40 100644 --- a/src/libFLAC/Makefile.am +++ b/src/libFLAC/Makefile.am @@ -47,8 +47,7 @@ CPUCFLAGS = -faltivec -force_cpusubtype_ALL -DFLAC__NO_ASM else # Linux-gcc for PPC does not have -force_cpusubtype_ALL, it is Darwin-specific CPUCFLAGS = -if FLaC__CPU_PPC_SPE -else +if FLaC__USE_ALTIVEC CPUCF...