# HG changeset patch # User Sam Lantinga # Date 1134053301 0 # Node ID b616ac4f39d1f4ed287ea00b171411313360403d # Parent bb5ace455586c9637967ae164e22d8977ef53d20 Fixed gcc 4 warnings diff -r bb5ace455586 -r b616ac4f39d1 src/cpuinfo/SDL_cpuinfo.c --- a/src/cpuinfo/SDL_cpuinfo.c Thu Dec 08 14:41:49 2005 +0000 +++ b/src/cpuinfo/SDL_cpuinfo.c Thu Dec 08 14:48:21 2005 +0000 @@ -49,7 +49,7 @@ #define CPU_HAS_SSE2 0x00000080 #define CPU_HAS_ALTIVEC 0x00000100 -#ifdef USE_SETJMP +#if defined(USE_SETJMP) && defined(GCC_ALTIVEC) /* This is the brute force way of detecting instruction sets... the idea is borrowed from the libmpeg2 library - thanks! */