Update to 4.75.2
This commit is contained in:
parent
da98e17fa9
commit
7b47e442f7
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
wavpack-4.60.0.tar.bz2
|
||||
/wavpack-4.60.1.tar.bz2
|
||||
/wavpack-4.70.0.tar.bz2
|
||||
/wavpack-4.75.2.tar.bz2
|
||||
|
||||
2
sources
2
sources
@ -1 +1 @@
|
||||
4c0186ef0dc8367ce5cd7cc0f398b714 wavpack-4.70.0.tar.bz2
|
||||
e8bbc4c3382f9148918ad7b896e10ac1 wavpack-4.75.2.tar.bz2
|
||||
|
||||
@ -1,19 +0,0 @@
|
||||
From: Miroslav Lichvar <mlichvar@redhat.com>
|
||||
Date: Thu, 3 Jan 2013 18:31:33 +0100
|
||||
Subject: [PATCH] Fix -Wstrict-aliasing compiler warnings
|
||||
|
||||
|
||||
diff --git a/cli/md5.c b/cli/md5.c
|
||||
index 1700240..a9954c2 100644
|
||||
--- a/cli/md5.c
|
||||
+++ b/cli/md5.c
|
||||
@@ -151,8 +151,7 @@ void MD5Final(digest, ctx)
|
||||
byteReverse(ctx->in, 14);
|
||||
|
||||
/* Append length in bits and transform */
|
||||
- ((uint32 *) ctx->in)[14] = ctx->bits[0];
|
||||
- ((uint32 *) ctx->in)[15] = ctx->bits[1];
|
||||
+ memcpy(ctx->in + 14 * sizeof (uint32), ctx->bits, 2 * sizeof (uint32));
|
||||
|
||||
MD5Transform(ctx->buf, (uint32 *) ctx->in);
|
||||
byteReverse((unsigned char *) ctx->buf, 4);
|
||||
@ -1,12 +1,11 @@
|
||||
Name: wavpack
|
||||
Summary: A completely open audiocodec
|
||||
Version: 4.70.0
|
||||
Release: 6%{?dist}
|
||||
Version: 4.75.2
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Group: Applications/Multimedia
|
||||
Url: http://www.wavpack.com/
|
||||
Source: http://www.wavpack.com/%{name}-%{version}.tar.bz2
|
||||
Patch1: wavpack-0001-Fix-Wstrict-aliasing-compiler-warnings.patch
|
||||
# For autoreconf
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
@ -30,7 +29,6 @@ Files needed for developing apps using wavpack
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch1 -p1 -b .strict_aliasing
|
||||
|
||||
%build
|
||||
autoreconf -ivf
|
||||
@ -60,6 +58,9 @@ rm -f %{buildroot}/%{_libdir}/*.la
|
||||
%doc ChangeLog README
|
||||
|
||||
%changelog
|
||||
* Mon Mar 28 2016 Sérgio Basto <sergio@serjux.com> - 4.75.2-1
|
||||
- Update to 4.75.2
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.70.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user