diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-11-02 18:16:43 -0500 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-11-02 18:17:04 -0500 |
commit | 688f22134d20aae2ba8e06de241b2563f74782a9 (patch) | |
tree | ca045adb698e2721eda08655854e61e45f4d6325 /dev-perl/SDL/files | |
parent | media-gfx/sane-backends: version bump to 1.0.25 (diff) | |
download | gentoo-688f22134d20aae2ba8e06de241b2563f74782a9.tar.gz gentoo-688f22134d20aae2ba8e06de241b2563f74782a9.tar.bz2 gentoo-688f22134d20aae2ba8e06de241b2563f74782a9.zip |
version bump
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-perl/SDL/files')
-rw-r--r-- | dev-perl/SDL/files/SDL-2.546-pointer.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-perl/SDL/files/SDL-2.546-pointer.patch b/dev-perl/SDL/files/SDL-2.546-pointer.patch new file mode 100644 index 000000000000..b3721ac805e2 --- /dev/null +++ b/dev-perl/SDL/files/SDL-2.546-pointer.patch @@ -0,0 +1,29 @@ +--- ./src/Core/objects/Event.xs.orig 2015-11-02 17:32:54.831820664 -0500 ++++ ./src/Core/objects/Event.xs 2015-11-02 17:33:35.802090936 -0500 +@@ -611,7 +611,7 @@ + char *CLASS = "SDL::JoyHatEvent"; + CODE: + RETVAL = NULL; +- if ( &event != NULL ) ++ if ( event ) + RETVAL = &(event->jhat); + OUTPUT: + RETVAL +@@ -683,7 +683,7 @@ + char *CLASS = "SDL::JoyButtonEvent"; + CODE: + RETVAL = NULL; +- if ( &event != NULL ) ++ if ( event ) + RETVAL = &(event->jbutton); + OUTPUT: + RETVAL +@@ -755,7 +755,7 @@ + char *CLASS = "SDL::ResizeEvent"; + CODE: + RETVAL = NULL; +- if ( &event != NULL ) ++ if ( event ) + RETVAL = &(event->resize); + OUTPUT: + RETVAL |