]> git.pld-linux.org Git - packages/libx264.git/blob - altivec-no-vand.patch
- ac gcc 3.3.6 on ppc has no "vand" instructions, drop altivec detect; rel 3
[packages/libx264.git] / altivec-no-vand.patch
1 --- x264-snapshot-20100512-2245/common/cpu.c~   2010-05-12 23:45:09.000000000 +0300
2 +++ x264-snapshot-20100512-2245/common/cpu.c    2010-08-26 13:57:43.790488230 +0300
3 @@ -251,6 +251,9 @@
4  
5  uint32_t x264_cpu_detect( void )
6  {
7 +#if 1
8 +    return 0;
9 +#else
10      static void (*oldsig)( int );
11  
12      oldsig = signal( SIGILL, sigill_handler );
13 @@ -270,6 +273,7 @@
14      signal( SIGILL, oldsig );
15  
16      return X264_CPU_ALTIVEC;
17 +#endif
18  }
19  #endif
20  
This page took 0.166849 seconds and 4 git commands to generate.