]> git.pld-linux.org Git - packages/SDL.git/commitdiff
- quick workaround.
authorPaweł Sikora <pluto@pld-linux.org>
Thu, 5 May 2005 13:51:47 +0000 (13:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    SDL-gcc-pr21398-workaround.patch -> 1.1

SDL-gcc-pr21398-workaround.patch [new file with mode: 0644]

diff --git a/SDL-gcc-pr21398-workaround.patch b/SDL-gcc-pr21398-workaround.patch
new file mode 100644 (file)
index 0000000..ccda083
--- /dev/null
@@ -0,0 +1,13 @@
+--- SDL-1.2.8/include/SDL_endian.h.orig        2004-12-13 08:54:30.000000000 +0100
++++ SDL-1.2.8/include/SDL_endian.h     2005-05-05 15:50:48.600521264 +0200
+@@ -68,7 +68,10 @@
+ #elif defined(__GNUC__) && defined(__x86_64__)
+ static __inline__ Uint16 SDL_Swap16(Uint16 x)
+ {
++/*
+       __asm__("xchgb %b0,%h0" : "=q" (x) :  "0" (x));
++*/
++      __asm__("xchgb %b0,%h0" : "=q" (x) :  "a" (x));
+       return x;
+ }
+ #elif defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
This page took 0.04727 seconds and 4 git commands to generate.