audiofile: fix gcc6 build
This commit is contained in:
parent
76942dd85a
commit
a5c7d868b9
2 changed files with 12 additions and 1 deletions
11
srcpkgs/audiofile/patches/fix-gcc6-shift_left.patch
Normal file
11
srcpkgs/audiofile/patches/fix-gcc6-shift_left.patch
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
--- libaudiofile/modules/SimpleModule.h 2013-03-07 08:14:57.000000000 +0100
|
||||||
|
+++ libaudiofile/modules/SimpleModule.h 2016-09-27 13:49:59.329194632 +0200
|
||||||
|
@@ -123,7 +123,7 @@
|
||||||
|
typedef typename IntTypes<Format>::UnsignedType UnsignedType;
|
||||||
|
|
||||||
|
static const int kScaleBits = (Format + 1) * CHAR_BIT - 1;
|
||||||
|
- static const int kMinSignedValue = -1 << kScaleBits;
|
||||||
|
+ static const int kMinSignedValue = static_cast<int>(~0u << kScaleBits);
|
||||||
|
|
||||||
|
struct signedToUnsigned : public std::unary_function<SignedType, UnsignedType>
|
||||||
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'audiofile'
|
# Template file for 'audiofile'
|
||||||
pkgname=audiofile
|
pkgname=audiofile
|
||||||
version=0.3.6
|
version=0.3.6
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc=$pkgname-$pkgname-$version
|
wrksrc=$pkgname-$pkgname-$version
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="automake libtool asciidoc pkg-config"
|
hostmakedepends="automake libtool asciidoc pkg-config"
|
||||||
|
|
Loading…
Reference in a new issue