Description of problem: file /usr/include/SDL/SDL_config.h from install of SDL-devel-1.2.10-6.2 conflicts with file from package SDL-devel-1.2.10-6.2
Created attachment 138530 [details] diff between the 2 conflicting header files I just did a diff between the 2 conflicting header files, and this is it. The main difference seems to be caused by bug 207903. With 207903 resolved the only remaining problem is: @@ -300,7 +300,7 @@ /* Enable assembly routines */ #define SDL_ASSEMBLY_ROUTINES 1 -#define SDL_HERMES_BLITTERS 1 +/* #undef SDL_HERMES_BLITTERS */ /* #undef SDL_ALTIVEC_BLITTERS */ #endif /* _SDL_config_h */ Which can be easily solved by making this: /* Enable assembly routines */ #define SDL_ASSEMBLY_ROUTINES 1 #ifdef __i386__ #define SDL_HERMES_BLITTERS 1 #endif /* #undef SDL_ALTIVEC_BLITTERS */ #endif /* _SDL_config_h */ Let me know if you want me to take a closer look (as time permits) and send you a patch.
This is fixed as of 1.2.10-8 which is available in updates, closing.