Compare commits
10 Commits
2ddc99297c
...
88172b4e1a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
88172b4e1a | ||
|
|
9e3a7edcd6 | ||
|
|
32f35eee65 | ||
|
|
9702cee8bf | ||
|
|
993f832208 | ||
|
|
73f6efe13d | ||
|
|
1119b4039b | ||
|
|
ce491c7f0a | ||
|
|
0289b21e88 | ||
|
|
abb0368c4a |
37
add-sw64-support.patch
Normal file
37
add-sw64-support.patch
Normal file
@ -0,0 +1,37 @@
|
||||
From cc2e417aea496d0bb32dbe7685ef435f9954dcd6 Mon Sep 17 00:00:00 2001
|
||||
From: maqi <maqi@uniontech.com>
|
||||
Date: Tue, 12 Nov 2024 13:56:01 +0800
|
||||
Subject: [PATCH] add sw64 support
|
||||
|
||||
---
|
||||
gst/gstconfig.h.in | 2 +-
|
||||
meson.build | 1 +
|
||||
2 files changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/gst/gstconfig.h.in b/gst/gstconfig.h.in
|
||||
index df35b23..2a92065 100644
|
||||
--- a/gst/gstconfig.h.in
|
||||
+++ b/gst/gstconfig.h.in
|
||||
@@ -124,7 +124,7 @@
|
||||
* http://docs.oracle.com/cd/E19205-01/820-4155/c++_faq.html#Vers6
|
||||
* https://software.intel.com/en-us/node/583402
|
||||
*/
|
||||
-#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__or1k__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_ARM64) || defined(_M_IA64) || defined(__xtensa__) || defined(__e2k__) || defined(__riscv) || defined(__ARC64__) || defined(__loongarch__)
|
||||
+#if defined(__alpha__) || defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__bfin) || defined(__hppa__) || defined(__nios2__) || defined(__MICROBLAZE__) || defined(__mips__) || defined(__or1k__) || defined(__sh__) || defined(__SH4__) || defined(__sparc__) || defined(__sparc) || defined(__ia64__) || defined(_M_ALPHA) || defined(_M_ARM) || defined(_M_ARM64) || defined(_M_IA64) || defined(__xtensa__) || defined(__e2k__) || defined(__riscv) || defined(__ARC64__) || defined(__loongarch__) || defined(__sw_64__)
|
||||
# define GST_HAVE_UNALIGNED_ACCESS 0
|
||||
#elif defined(__i386__) || defined(__i386) || defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__ppc__) || defined(__ppc64__) || defined(__powerpc__) || defined(__powerpc64__) || defined(__m68k__) || defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || defined(__s390__) || defined(__s390x__) || defined(__zarch__)
|
||||
# define GST_HAVE_UNALIGNED_ACCESS 1
|
||||
diff --git a/meson.build b/meson.build
|
||||
index f53cc11..e9efab5 100644
|
||||
--- a/meson.build
|
||||
+++ b/meson.build
|
||||
@@ -195,6 +195,7 @@ host_defines = [
|
||||
[ 'powerpc', 'HAVE_CPU_PPC' ],
|
||||
[ 'powerpc64', 'HAVE_CPU_PPC64' ],
|
||||
[ 'alpha', 'HAVE_CPU_ALPHA' ],
|
||||
+ [ 'sw_64', 'HAVE_CPU_SW_64' ],
|
||||
[ 'sparc', 'HAVE_CPU_SPARC' ],
|
||||
[ 'ia64', 'HAVE_CPU_IA64' ],
|
||||
[ 'hppa', 'HAVE_CPU_HPPA' ],
|
||||
--
|
||||
2.33.0
|
||||
Binary file not shown.
BIN
gstreamer-1.22.5.tar.xz
Normal file
BIN
gstreamer-1.22.5.tar.xz
Normal file
Binary file not shown.
@ -1,15 +1,16 @@
|
||||
Name: gstreamer1
|
||||
Version: 1.19.3
|
||||
Release: 1
|
||||
Version: 1.22.5
|
||||
Release: 2
|
||||
Summary: Bindings for GStreamer 1.0, the open source multimedia framework
|
||||
|
||||
License: LGPLv2+
|
||||
URL: https://gstreamer.freedesktop.org/
|
||||
Source0: http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-%{version}.tar.xz
|
||||
Source0: https://github.com/GStreamer/gstreamer/archive/refs/tags/gstreamer-%{version}.tar.xz
|
||||
Source1: gstreamer1.attr
|
||||
Source2: gstreamer1.prov
|
||||
|
||||
|
||||
Patch0001: gstreamer-inspect-rpm-format.patch
|
||||
Patch0002: add-sw64-support.patch
|
||||
|
||||
BuildRequires: bison check-devel chrpath meson >= 0.59.0 gcc
|
||||
BuildRequires: flex gettext gettext-devel glib2-devel >= 2.32.0
|
||||
@ -48,9 +49,12 @@ Man pages and other related documents for %{name}.
|
||||
%prep
|
||||
%autosetup -n gstreamer-%{version} -p1
|
||||
|
||||
|
||||
|
||||
%build
|
||||
|
||||
%meson \
|
||||
-D gtk_doc=disabled -D tests=disabled -D examples=disabled \
|
||||
-D tests=disabled -D examples=disabled \
|
||||
-D ptp-helper-permissions=capabilities -D dbghelp=disabled \
|
||||
-D doc=disabled
|
||||
%meson_build
|
||||
@ -73,7 +77,6 @@ install -m0755 -D %{SOURCE2} %{buildroot}%{_rpmconfigdir}/gstreamer1.prov
|
||||
%{_libdir}/gstreamer-1.0/*.so
|
||||
%{_libdir}/girepository-1.0/*.typelib
|
||||
%{_libexecdir}/gstreamer-1.0/*
|
||||
|
||||
%{_datadir}/bash-completion/helpers/gst
|
||||
%{_datadir}/bash-completion/completions/gst-*
|
||||
|
||||
@ -92,10 +95,26 @@ install -m0755 -D %{SOURCE2} %{buildroot}%{_rpmconfigdir}/gstreamer1.prov
|
||||
%{_datadir}/gdb/auto-load/*
|
||||
|
||||
%files help
|
||||
%doc RELEASE README
|
||||
%doc RELEASE
|
||||
%{_mandir}/man1/*.gz
|
||||
|
||||
%changelog
|
||||
* Tue Mar 04 2025 maqi <maqi@uniontech.com> - 1.22.5-2
|
||||
- add sw_64 support
|
||||
|
||||
* Wed Nov 22 2023 lwg <liweiganga@uniontech.com> - 1.22.5-1
|
||||
- update to version 1.22.5
|
||||
|
||||
* Tue Nov 1 2022 huyab<1229981468@qq.com> - 1.20.4-1
|
||||
- update to 1.20.4
|
||||
|
||||
* Sat Jun 25 2022 lin zhang <lin.zhang@turbolinux.com.cn> - 1.20.3-1
|
||||
- update to 1.20.3
|
||||
|
||||
* Mon Jun 20 2022 lin zhang <lin.zhang@turbolinux.com.cn> - 1.19.3-2
|
||||
- fix build when Meson >= 0.61.5
|
||||
- remove meson option gtk_doc
|
||||
|
||||
* Fri Dec 3 2021 hanhui <hanhui15@huawei.com> - 1.19.3-1
|
||||
- Upgrade to gstreamer-1.19.3
|
||||
|
||||
@ -127,3 +146,4 @@ install -m0755 -D %{SOURCE2} %{buildroot}%{_rpmconfigdir}/gstreamer1.prov
|
||||
* Tue Aug 27 2019 openEuler Buildteam <buildteam@openeuler.org> - 1.14.4-2
|
||||
- Package Init
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user