rpms/SDL/F-9 SDL.spec,1.59,1.60 SDL_config.h,1.3,1.4

Dennis Gilmore (ausil) fedora-extras-commits at redhat.com
Wed May 28 19:46:51 UTC 2008


Author: ausil

Update of /cvs/pkgs/rpms/SDL/F-9
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv17574

Modified Files:
	SDL.spec SDL_config.h 
Log Message:
fix sparc multilib handling



Index: SDL.spec
===================================================================
RCS file: /cvs/pkgs/rpms/SDL/F-9/SDL.spec,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- SDL.spec	7 Apr 2008 12:56:24 -0000	1.59
+++ SDL.spec	28 May 2008 19:46:05 -0000	1.60
@@ -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 @@
 %{_libdir}/lib*.a
 
 %changelog
+* Wed May 28 2008 Dennis Gilmore <dennis at ausil.us> 1.2.13-4
+- fix sparc multilib handling
+
 * Mon Apr  7 2008 Thomas Woerner <twoerner at redhat.com> 1.2.13-3
 - updated PulseAudio driver (rhbz#439847)
   Thanks to Lennart Poettering for the patch


Index: SDL_config.h
===================================================================
RCS file: /cvs/pkgs/rpms/SDL/F-9/SDL_config.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SDL_config.h	27 Aug 2007 16:32:32 -0000	1.3
+++ SDL_config.h	28 May 2008 19:46:05 -0000	1.4
@@ -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




More information about the fedora-extras-commits mailing list