Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package schismtracker for openSUSE:Factory checked in at 2022-06-23 10:25:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/schismtracker (Old) and /work/SRC/openSUSE:Factory/.schismtracker.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "schismtracker" Thu Jun 23 10:25:03 2022 rev:20 rq:984615 version:20220506 Changes: -------- --- /work/SRC/openSUSE:Factory/schismtracker/schismtracker.changes 2022-05-17 17:24:55.303197532 +0200 +++ /work/SRC/openSUSE:Factory/.schismtracker.new.1548/schismtracker.changes 2022-06-23 10:25:45.771837294 +0200 @@ -1,0 +2,5 @@ +Wed Jun 22 22:44:47 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Add 0001-configure.ac-Accept-SDL-1.2.50.patch + +------------------------------------------------------------------- New: ---- 0001-configure.ac-Accept-SDL-1.2.50.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ schismtracker.spec ++++++ --- /var/tmp/diff_new_pack.D59PCB/_old 2022-06-23 10:25:46.179837737 +0200 +++ /var/tmp/diff_new_pack.D59PCB/_new 2022-06-23 10:25:46.183837741 +0200 @@ -28,6 +28,7 @@ Patch1: schism-alsa.diff Patch2: schism-nodate.diff Patch3: schism-deptrack.diff +Patch4: 0001-configure.ac-Accept-SDL-1.2.50.patch BuildRequires: alsa-devel BuildRequires: autoconf BuildRequires: automake ++++++ 0001-configure.ac-Accept-SDL-1.2.50.patch ++++++ >From e52565aa278d4662a3ed1e2ef413a8c6d1f09f0c Mon Sep 17 00:00:00 2001 From: "Haelwenn (lanodan) Monnier" <cont...@hacktivis.me> Date: Sun, 12 Jun 2022 19:56:16 +0200 Subject: [PATCH] configure.ac: Accept SDL 1.2.50+ 1.2.50+ (currently 1.2.52) is the version returned by the SDL 1.2 compatibility library[1]. 1: https://github.com/libsdl-org/sdl12-compat --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 58bf2963..0e6b2eb3 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ AC_SUBST(SDL_CONFIG) if test "x$SDL_CONFIG" == "x"; then AC_MSG_ERROR([*** sdl-config not found.]) fi -if $SDL_CONFIG --version | grep -qv 1.2.1; then +if $SDL_CONFIG --version | grep -qv '1.2.\[1-9\]'; then AC_MSG_ERROR([*** SDL version >= 1.2.10 not found.]) fi SDL_CFLAGS=$($SDL_CONFIG --cflags) -- 2.36.1