From 4398907513b128c8fb323ffb6e51835c6682f5f4 Mon Sep 17 00:00:00 2001 From: hefq343 Date: Mon, 11 Mar 2024 17:43:49 +0800 Subject: [PATCH] fix build error for ppc64le Signed-off-by: hefq343 (cherry picked from commit df19f8c29708333f5c5c5c210fad9a26c086c4d4) --- libvpx.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libvpx.spec b/libvpx.spec index 095e9fe..0c7adb0 100644 --- a/libvpx.spec +++ b/libvpx.spec @@ -1,6 +1,6 @@ Name: libvpx Version: 1.7.0 -Release: 10 +Release: 11 Summary: VP8/VP9 Video Codec SDK License: BSD Source0: https://github.com/webmproject/libvpx/archive/v%{version}.tar.gz @@ -36,7 +36,7 @@ Development libraries and headers for developing software against libvpx. %ifarch aarch64 %global vpxtarget arm64-linux-gcc %else -%ifarch loongarch64 sw_64 +%ifarch loongarch64 sw_64 ppc64le %global vpxtarget generic-gnu %endif %endif @@ -108,6 +108,9 @@ mv %{buildroot}%{_prefix}/src/vpx_scale %{buildroot}%{_includedir}/ %{_libdir}/libvpx.so %changelog +* Mon Mar 11 2024 hefq343 - 1.7.0-11 +- add ppc64le support + * Sun Oct 01 2023 Funda Wang - 1.7.0-10 - fix CVE-2023-5217, CVE-2023-44488 -- Gitee