Sync from SUSE:SLFO:Main dirac revision fef574851e7ecd4d256deb25fb860e79
This commit is contained in:
parent
adb553d113
commit
9459f33844
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 26 07:54:18 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||
|
||||
- Use %autosetup macro. Allows to eliminate the usage of deprecated
|
||||
PatchN.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 8 17:31:33 UTC 2019 - olaf@aepfle.de
|
||||
|
||||
- Use gcc7 in SLE_12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 4 10:27:05 UTC 2017 - tchvatal@suse.com
|
||||
|
||||
|
17
dirac.spec
17
dirac.spec
@ -27,8 +27,12 @@ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.
|
||||
Source1: baselibs.conf
|
||||
Patch0: 0001-Fix-uninitialised-memory-read-that-causes-the-encode.patch
|
||||
Patch1: %{name}-%{version}-gcc45.patch
|
||||
BuildRequires: fdupes
|
||||
%if 0%{?suse_version} > 1315
|
||||
BuildRequires: gcc-c++
|
||||
%else
|
||||
BuildRequires: gcc7-c++
|
||||
%endif
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: libtool
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(cppunit)
|
||||
@ -98,13 +102,18 @@ set for the encoder to work, such as block sizes and temporal
|
||||
prediction structures, which must otherwise be set by hand.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%autosetup -p1
|
||||
|
||||
# Code is not mature enough for -Werror (unused results)
|
||||
sed -i 's/-Werror//' configure.ac
|
||||
|
||||
%build
|
||||
test -x "$(type -p gcc)" && export CC=$_
|
||||
test -x "$(type -p g++)" && export CXX=$_
|
||||
test -x "$(type -p gcc-7)" && export CC=$_
|
||||
test -x "$(type -p g++-7)" && export CXX=$_
|
||||
test -x "$(type -p gcc-8)" && export CC=$_
|
||||
test -x "$(type -p g++-8)" && export CXX=$_
|
||||
ACLOCAL="aclocal -I m4" autoreconf -fvi
|
||||
%configure \
|
||||
--disable-silent-rules \
|
||||
|
Loading…
Reference in New Issue
Block a user