summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2010-04-08 20:25:47 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2010-04-08 20:25:47 +0000
commitbcda5c34ff594a34b8f385e4df92084993f085d2 (patch)
tree55c93d0f753124095a1d806726cca4d8c4b215ae /media-libs/libsdl/files
parentapp-text/xmlstarlet: Bump to 1.0.2 (diff)
downloadgentoo-2-bcda5c34ff594a34b8f385e4df92084993f085d2.tar.gz
gentoo-2-bcda5c34ff594a34b8f385e4df92084993f085d2.tar.bz2
gentoo-2-bcda5c34ff594a34b8f385e4df92084993f085d2.zip
add static-libs support; add mouse click patch from Debian to try to work around bug #290695
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'media-libs/libsdl/files')
-rw-r--r--media-libs/libsdl/files/libsdl-1.2.14-click.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/media-libs/libsdl/files/libsdl-1.2.14-click.patch b/media-libs/libsdl/files/libsdl-1.2.14-click.patch
new file mode 100644
index 000000000000..7d3e5acfc143
--- /dev/null
+++ b/media-libs/libsdl/files/libsdl-1.2.14-click.patch
@@ -0,0 +1,23 @@
+--- SDL-1.2.14/src/video/x11/SDL_x11events.c.orig 2010-04-08 11:57:05.003169834 -0700
++++ SDL-1.2.14/src/video/x11/SDL_x11events.c 2010-04-08 12:33:51.690926340 -0700
+@@ -423,12 +423,15 @@
+ if ( xevent.xcrossing.mode == NotifyUngrab )
+ printf("Mode: NotifyUngrab\n");
+ #endif
+- if ( this->input_grab == SDL_GRAB_OFF ) {
+- posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
++ if ( (xevent.xcrossing.mode != NotifyGrab) &&
++ (xevent.xcrossing.mode != NotifyUngrab) ) {
++ if ( this->input_grab == SDL_GRAB_OFF ) {
++ posted = SDL_PrivateAppActive(1, SDL_APPMOUSEFOCUS);
++ }
++ posted = SDL_PrivateMouseMotion(0, 0,
++ xevent.xcrossing.x,
++ xevent.xcrossing.y);
+ }
+- posted = SDL_PrivateMouseMotion(0, 0,
+- xevent.xcrossing.x,
+- xevent.xcrossing.y);
+ }
+ break;
+