diff options
author | Alexandre Oliveira <rockytvbr@gmail.com> | 2018-11-24 14:58:51 -0200 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-26 14:05:16 +0000 |
commit | 9d9932f541e6eb3df0c1d307b11a203d270aa535 (patch) | |
tree | 374463f46fd509795de357147bd949a543e4042a /main/sdl2/fix-directfb-renderer.patch | |
parent | dee335d366275402078a233e0b0e44e9086e373f (diff) | |
download | aports-9d9932f541e6eb3df0c1d307b11a203d270aa535.tar.bz2 aports-9d9932f541e6eb3df0c1d307b11a203d270aa535.tar.xz |
main/sdl2: upgrade to 2.0.9
The previously required patches were added upstream
Diffstat (limited to 'main/sdl2/fix-directfb-renderer.patch')
-rw-r--r-- | main/sdl2/fix-directfb-renderer.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/main/sdl2/fix-directfb-renderer.patch b/main/sdl2/fix-directfb-renderer.patch deleted file mode 100644 index 0a5a79e4fa..0000000000 --- a/main/sdl2/fix-directfb-renderer.patch +++ /dev/null @@ -1,31 +0,0 @@ -The update to 2.0.8 broke the build of the DirectFB renderer such that -it cannot be used anymore, see -https://bugzilla.libsdl.org/show_bug.cgi?id=4123. This fixes the -regression by re-inserting the affected line in the configure script. - -diff --git a/configure b/configure -index 1c7f87e..c5ce9c3 100755 ---- a/configure -+++ b/configure -@@ -21475,6 +21487,9 @@ fi - - $as_echo "#define SDL_VIDEO_DRIVER_DIRECTFB 1" >>confdefs.h - -+ -+$as_echo "#define SDL_VIDEO_RENDER_DIRECTFB 1" >>confdefs.h -+ - SOURCES="$SOURCES $srcdir/src/video/directfb/*.c" - EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS" - -diff --git a/configure.in b/configure.in -index 1c7e793..262885b 100644 ---- a/configure.in -+++ b/configure.in -@@ -2150,6 +2150,7 @@ AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[ - , enable_directfb_shared=yes) - - AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ]) -+ AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ]) - SOURCES="$SOURCES $srcdir/src/video/directfb/*.c" - EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS" - |