diff options
author | Daniel Solano Gómez <gentoo@sattvik.com> | 2013-05-30 08:17:03 -0500 |
---|---|---|
committer | Daniel Solano Gómez <gentoo@sattvik.com> | 2013-05-30 08:17:03 -0500 |
commit | 83d0386f02b6fcf0426d29658ba92a592d081aeb (patch) | |
tree | 916f2d4df784a0e71ae9083369f8a296310bf5bd /profiles | |
parent | Add CUPS group fix patch (diff) | |
download | sattvik-83d0386f02b6fcf0426d29658ba92a592d081aeb.tar.gz sattvik-83d0386f02b6fcf0426d29658ba92a592d081aeb.tar.bz2 sattvik-83d0386f02b6fcf0426d29658ba92a592d081aeb.zip |
Add libsdl patch.
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/sattvik/linux/amd64/13.0/sattvik_patches/media-libs/libsdl-1.2.15-r3/libsdl-1.2.15-libX11-1.5.99.901.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/profiles/sattvik/linux/amd64/13.0/sattvik_patches/media-libs/libsdl-1.2.15-r3/libsdl-1.2.15-libX11-1.5.99.901.patch b/profiles/sattvik/linux/amd64/13.0/sattvik_patches/media-libs/libsdl-1.2.15-r3/libsdl-1.2.15-libX11-1.5.99.901.patch new file mode 100644 index 0000000..0f1c07c --- /dev/null +++ b/profiles/sattvik/linux/amd64/13.0/sattvik_patches/media-libs/libsdl-1.2.15-r3/libsdl-1.2.15-libX11-1.5.99.901.patch @@ -0,0 +1,16 @@ +libX11-1.5.99.901 has changed prototype of _XData32 + +<http://bugzilla.libsdl.org/show_bug.cgi?id=1769> + +diff -r b6b2829cd7ef src/video/x11/SDL_x11sym.h +--- a/src/video/x11/SDL_x11sym.h Wed Feb 27 15:20:31 2013 -0800 ++++ b/src/video/x11/SDL_x11sym.h Wed Mar 27 16:07:23 2013 +0100 +@@ -165,7 +165,7 @@ + */ + #ifdef LONG64 + SDL_X11_MODULE(IO_32BIT) +-SDL_X11_SYM(int,_XData32,(Display *dpy,register long *data,unsigned len),(dpy,data,len),return) ++SDL_X11_SYM(int,_XData32,(Display *dpy,register _Xconst long *data,unsigned len),(dpy,data,len),return) + SDL_X11_SYM(void,_XRead32,(Display *dpy,register long *data,long len),(dpy,data,len),) + #endif + |