rpms/SDL/FC-6 SDL.spec,1.50,1.51 SDL_config.h,1.1,1.2

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Thu Nov 2 17:48:57 UTC 2006


Author: twoerner

Update of /cvs/dist/rpms/SDL/FC-6
In directory cvs.devel.redhat.com:/tmp/cvs-serv346

Modified Files:
	SDL.spec SDL_config.h 
Log Message:
[tw]
- fixed arch order in SDL_config.h wrapper




Index: SDL.spec
===================================================================
RCS file: /cvs/dist/rpms/SDL/FC-6/SDL.spec,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- SDL.spec	27 Oct 2006 16:44:00 -0000	1.50
+++ SDL.spec	2 Nov 2006 17:48:50 -0000	1.51
@@ -1,7 +1,7 @@
 Summary: A cross-platform multimedia library.
 Name: SDL
 Version: 1.2.10
-Release: 7%{dist}
+Release: 8%{dist}
 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 @@
 %{_mandir}/man3/SDL*.3*
 
 %changelog
+* Thu Nov  2 2006 Thomas Woerner <twoerner at redhat.com> 1.2.10-8%{dist}
+- fixed arch order in SDL_config.h wrapper
+
 * Fri Oct 27 2006 Thomas Woerner <twoerner at redhat.com> 1.2.10-7%{dist}
 - fixed multilib conflicts for SDL (#212288)
 


Index: SDL_config.h
===================================================================
RCS file: /cvs/dist/rpms/SDL/FC-6/SDL_config.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SDL_config.h	27 Oct 2006 16:44:00 -0000	1.1
+++ SDL_config.h	2 Nov 2006 17:48:50 -0000	1.2
@@ -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




More information about the fedora-cvs-commits mailing list