diff options
Diffstat (limited to 'media-libs/libsdl/files/1.2.8-linux26.patch')
-rw-r--r-- | media-libs/libsdl/files/1.2.8-linux26.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/media-libs/libsdl/files/1.2.8-linux26.patch b/media-libs/libsdl/files/1.2.8-linux26.patch deleted file mode 100644 index d0d009b7543c..000000000000 --- a/media-libs/libsdl/files/1.2.8-linux26.patch +++ /dev/null @@ -1,37 +0,0 @@ -http://bugs.gentoo.org/show_bug.cgi?id=74608 - -Index: SDL_fbevents.c -=================================================================== -RCS file: /home/sdlweb/libsdl.org/cvs/SDL12/src/video/fbcon/SDL_fbevents.c,v -retrieving revision 1.13 -retrieving revision 1.14 -diff -u -r1.13 -r1.14 ---- src/video/fbcon/SDL_fbevents.c 4 Jan 2004 16:49:25 -0000 1.13 -+++ src/video/fbcon/SDL_fbevents.c 4 Jan 2005 19:04:14 -0000 1.14 -@@ -835,7 +835,7 @@ - static void switch_vt(_THIS, unsigned short which) - { - struct vt_stat vtstate; -- unsigned short current; -+ unsigned short v_active; - SDL_Surface *screen; - __u16 saved_pal[3*256]; - Uint32 screen_arealen; -@@ -846,7 +846,7 @@ - (which == vtstate.v_active) ) { - return; - } -- current = vtstate.v_active; -+ v_active = vtstate.v_active; - - /* Save the contents of the screen, and go to text mode */ - SDL_mutexP(hw_lock); -@@ -864,7 +864,7 @@ - if ( ioctl(keyboard_fd, VT_ACTIVATE, which) == 0 ) { - /* Wait for our console to be activated again */ - ioctl(keyboard_fd, VT_WAITACTIVE, which); -- while ( ioctl(keyboard_fd, VT_WAITACTIVE, current) < 0 ) { -+ while ( ioctl(keyboard_fd, VT_WAITACTIVE, v_active) < 0 ) { - if ( (errno != EINTR) && (errno != EAGAIN) ) { - /* Unknown VT error - cancel this */ - break; |