diff --git a/SDL.spec b/SDL.spec index 019d8bb..b9e6c33 100644 --- a/SDL.spec +++ b/SDL.spec @@ -1,7 +1,7 @@ Summary: A cross-platform multimedia library Name: SDL Version: 1.2.13 -Release: 3%{?dist} +Release: 4%{?dist} Source: http://www.libsdl.org/release/%{name}-%{version}.tar.gz Source1: SDL_config.h # Temporary hack: Use pulseaudio via esd so SDL apps don't lock up when they @@ -155,6 +155,9 @@ rm -rf %{buildroot} %{_libdir}/lib*.a %changelog +* Wed May 28 2008 Dennis Gilmore 1.2.13-4 +- fix sparc multilib handling + * Mon Apr 7 2008 Thomas Woerner 1.2.13-3 - updated PulseAudio driver (rhbz#439847) Thanks to Lennart Poettering for the patch diff --git a/SDL_config.h b/SDL_config.h index 34e886e..298a1d8 100644 --- a/SDL_config.h +++ b/SDL_config.h @@ -53,6 +53,10 @@ #include "SDL_config-arm.h" #elif defined(__alpha__) #include "SDL_config-alpha.h" +#elif defined(__sparc__) && defined (__arch64__) +#include "SDL_config-sparc64.h" +#elif defined(__sparc__) +#include "SDL_config-sparc.h" #else #error "The SDL-devel package is not usable with the architecture." #endif