diff --git a/SDL.spec b/SDL.spec index 40b9ab5..93c7865 100644 --- a/SDL.spec +++ b/SDL.spec @@ -1,7 +1,7 @@ Summary: A cross-platform multimedia library. Name: SDL Version: 1.2.10 -Release: 8 +Release: 9 Source: http://www.libsdl.org/release/%{name}-%{version}.tar.gz Source2: SDL_config.h Patch0: SDL-1.2.10-byteorder.patch @@ -112,6 +112,9 @@ rm -rf %{buildroot} %{_mandir}/man3/SDL*.3* %changelog +* Thu Nov 2 2006 Thomas Woerner 1.2.10-9 +- fixed arch order in SDL_config.h wrapper + * Fri Oct 27 2006 Thomas Woerner 1.2.10-8 - fixed multilib conflicts for SDL (#212288) diff --git a/SDL_config.h b/SDL_config.h index d25e586..0daba28 100644 --- a/SDL_config.h +++ b/SDL_config.h @@ -37,18 +37,18 @@ #if defined(__i386__) #include "SDL_config-i386.h" -#elif defined(__x86_64__) -#include "SDL_config-x86_64.h" -#elif defined(__powerpc__) -#include "SDL_config-ppc.h" +#elif defined(__ia64__) +#include "SDL_config-ia64.h" #elif defined(__powerpc64__) #include "SDL_config-ppc64.h" -#elif defined(__s390__) -#include "SDL_config-s390.h" +#elif defined(__powerpc__) +#include "SDL_config-ppc.h" #elif defined(__s390x__) #include "SDL_config-s390x.h" -#elif defined(__ia64__) -#include "SDL_config-ia64.h" +#elif defined(__s390__) +#include "SDL_config-s390.h" +#elif defined(__x86_64__) +#include "SDL_config-x86_64.h" #else #error "The SDL-devel package is not usable with the architecture." #endif