[mjpegtools] Add BuildRequires: gcc-c++
by Sérgio M. Basto
commit 967ca94de2a69136aa1d3390457d2a258d436bfb
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Oct 12 02:41:35 2018 +0100
Add BuildRequires: gcc-c++
mjpegtools.spec | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/mjpegtools.spec b/mjpegtools.spec
index dba0af8..f6faa01 100644
--- a/mjpegtools.spec
+++ b/mjpegtools.spec
@@ -1,6 +1,6 @@
Name: mjpegtools
Version: 2.1.0
-Release: 11%{?dist}
+Release: 12%{?dist}
Summary: Tools to manipulate MPEG data
Group: Applications/Multimedia
License: GPLv2
@@ -10,6 +10,7 @@ Patch0: mjpegtools-2.1.0-sdl-cflags.patch
Patch1: mjpegtools-2.1.0-no_format.patch
Patch2: mjpegtools-2.1.0-pic.patch
+BuildRequires: gcc-c++
BuildRequires: libjpeg-devel
BuildRequires: nasm
BuildRequires: libdv-devel
@@ -188,6 +189,9 @@ rm $RPM_BUILD_ROOT%{_bindir}/mpegtranscode
%changelog
+* Fri Oct 12 2018 Sérgio Basto <sergio(a)serjux.com> - 2.1.0-12
+- Add BuildRequires: gcc-c++
+
* Fri Oct 12 2018 Sérgio Basto <sergio(a)serjux.com> - 2.1.0-11
- Build with libquicktime again
6 years, 1 month
[mjpegtools] Build with libquicktime again
by Sérgio M. Basto
commit 70a9a7f8a663270fe04d4e5cb410e3341955033c
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Oct 12 02:05:55 2018 +0100
Build with libquicktime again
mjpegtools.spec | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/mjpegtools.spec b/mjpegtools.spec
index 0db09bc..dba0af8 100644
--- a/mjpegtools.spec
+++ b/mjpegtools.spec
@@ -1,6 +1,6 @@
Name: mjpegtools
Version: 2.1.0
-Release: 10%{?dist}
+Release: 11%{?dist}
Summary: Tools to manipulate MPEG data
Group: Applications/Multimedia
License: GPLv2
@@ -15,10 +15,7 @@ BuildRequires: nasm
BuildRequires: libdv-devel
BuildRequires: SDL-devel >= 1.1.3
BuildRequires: SDL_gfx-devel
-# libquicktime is FTBFS in F28
-%if 0%{?fedora} <= 27
BuildRequires: libquicktime-devel >= 0.9.8
-%endif
BuildRequires: libpng-devel
BuildRequires: gtk2-devel >= 2.4.0
Requires: %{name}-libs = %{version}-%{release}
@@ -191,6 +188,9 @@ rm $RPM_BUILD_ROOT%{_bindir}/mpegtranscode
%changelog
+* Fri Oct 12 2018 Sérgio Basto <sergio(a)serjux.com> - 2.1.0-11
+- Build with libquicktime again
+
* Fri Jul 27 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 2.1.0-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
6 years, 1 month
[unifi] Move find/execstack call into the ifarch conditional so it is not executed on ppc64le.
by Richard Shaw
commit 6dd394c839fe0b878dbea33b39e6e0b397c3d33e
Author: Richard Shaw <hobbes1069(a)gmail.com>
Date: Thu Oct 11 10:24:18 2018 -0500
Move find/execstack call into the ifarch conditional so it is not executed on ppc64le.
unifi.spec | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/unifi.spec b/unifi.spec
index 577eb18..e3ed861 100644
--- a/unifi.spec
+++ b/unifi.spec
@@ -186,10 +186,10 @@ install -pm 0755 Linux/%{unifi_arch}/*.so %{buildroot}%{_libdir}/%{name}/
for lib in $(ls %{buildroot}%{_libdir}/%{name}/*.so); do
ln -sr $lib %{buildroot}%{_datadir}/unifi/lib/native/Linux/%{unifi_arch}
done
-%endif
-
# Try to fix java VM warning about running execstack on libubnt_webrtc_jni.so
find %{buildroot}%{_libdir} -name libubnt_webrtc_jni.so -exec execstack -c {} \;
+%endif
+
# Install logrotate config
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
6 years, 1 month