From 55b3240b12b18708c6c000f84c15840e3c839797 Mon Sep 17 00:00:00 2001 From: Wenlong Zhang Date: Thu, 2 Mar 2023 16:03:23 +0800 Subject: [PATCH] add loongarch support for SDL2 Signed-off-by: Wenlong Zhang --- SDL2.spec | 9 ++++++++- SDL_config.h | 2 ++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/SDL2.spec b/SDL2.spec index b388f08..39c6210 100644 --- a/SDL2.spec +++ b/SDL2.spec @@ -1,6 +1,6 @@ Name: SDL2 Version: 2.0.12 -Release: 5 +Release: 6 Summary: Cross-platform multimedia library License: zlib and MIT URL: http://www.libsdl.org/ @@ -19,7 +19,11 @@ BuildRequires: mesa-libGLU-devel mesa-libEGL-devel libglvnd-devel BuildRequires: libXext-devel libX11-devel libXi-devel libXrandr-devel BuildRequires: libXrender-devel libXScrnSaver-devel libusb-devel BuildRequires: libXinerama-devel libXcursor-devel systemd-devel +%ifarch loongarch64 +BuildRequires: pkgconfig(libpulse-simple) +%else BuildRequires: pkgconfig(libpulse-simple) pkgconfig(jack) +%endif BuildRequires: pkgconfig(dbus-1) pkgconfig(ibus-1.0) BuildRequires: pkgconfig(wayland-client) pkgconfig(wayland-egl) BuildRequires: pkgconfig(wayland-cursor) pkgconfig(wayland-protocols) @@ -94,6 +98,9 @@ rm -vf %{buildroot}%{_libdir}/*.la %{_libdir}/lib*.a %changelog +* Thu Mar 02 2023 Wenlong Zhang - 2.0.12-6 +- add loongarch support + * Tue Jan 10 2023 jiangpeng - 2.0.12-5 - fix CVE-2022-4743 diff --git a/SDL_config.h b/SDL_config.h index 7862549..a91c02d 100644 --- a/SDL_config.h +++ b/SDL_config.h @@ -76,6 +76,8 @@ #include "SDL_config-mips.h" #elif defined(__riscv) && defined(__riscv_xlen) && __riscv_xlen == 64 #include "SDL_config-riscv64.h" +#elif defined(__loongarch64) +#include "SDL_config-loongarch64.h" #else #error "The SDL2-devel package is not usable with the architecture." #endif -- Gitee