Accepting request 1150702 from multimedia:libs

OBS-URL: https://build.opensuse.org/request/show/1150702
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dirac?expand=0&rev=27
This commit is contained in:
Ana Guerrero 2024-02-27 21:43:36 +00:00 committed by Git OBS Bridge
commit b087c31303
2 changed files with 24 additions and 4 deletions

View File

@ -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

View File

@ -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 \