forked from pool/ffmpeg-4
Jan Engelhardt
f1f8e75c79
- Add patch to detect SDL2 >= 2.1.0 (boo#1202848): * ffmpeg-sdl2-detection.patch OBS-URL: https://build.opensuse.org/request/show/999763 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/ffmpeg-4?expand=0&rev=184
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
From 839f98ff6719cf2db0cbd88cd787a1b19b9cbf47 Mon Sep 17 00:00:00 2001
|
|
From: Christopher Degawa <ccom@randomderp.com>
|
|
Date: Wed, 11 May 2022 15:11:04 -0500
|
|
Subject: [PATCH] configure: extend SDL check to accept all 2.x versions
|
|
|
|
sdl2 recently changed their versioning, moving the patch level to minor level
|
|
https://github.com/libsdl-org/SDL/commit/cd7c2f1de7d9e418bb554047d714dd7cacc020ff
|
|
and have said that they will instead ship sdl3.pc for 3.0.0
|
|
|
|
Fixes ticket 9768
|
|
|
|
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
|
|
Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
|
|
---
|
|
configure | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure b/configure
|
|
index 927857fd1024..16d9c78a0fdc 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -6383,7 +6383,7 @@ fi
|
|
|
|
if enabled sdl2; then
|
|
SDL2_CONFIG="${cross_prefix}sdl2-config"
|
|
- test_pkg_config sdl2 "sdl2 >= 2.0.1 sdl2 < 2.1.0" SDL_events.h SDL_PollEvent
|
|
+ test_pkg_config sdl2 "sdl2 >= 2.0.1 sdl2 < 3.0.0" SDL_events.h SDL_PollEvent
|
|
if disabled sdl2 && "${SDL2_CONFIG}" --version > /dev/null 2>&1; then
|
|
sdl2_cflags=$("${SDL2_CONFIG}" --cflags)
|
|
sdl2_extralibs=$("${SDL2_CONFIG}" --libs)
|