audiofile: fix gcc6 build

This commit is contained in:
Juergen Buchmueller 2016-09-27 14:00:12 +02:00
parent 76942dd85a
commit a5c7d868b9
2 changed files with 12 additions and 1 deletions

View 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>
{

View file

@ -1,7 +1,7 @@
# Template file for 'audiofile'
pkgname=audiofile
version=0.3.6
revision=1
revision=2
wrksrc=$pkgname-$pkgname-$version
build_style=gnu-configure
hostmakedepends="automake libtool asciidoc pkg-config"