Hi, On Thu, 12 Feb 2015 10:29:54 +0000 Matthias Klose <d...@debian.org> wrote: > The package fails to build in a test rebuild on at least amd64 with > gcc-5/g++-5, but succeeds to build with gcc-4.9/g++-4.9. The > severity of this report may be raised before the stretch release.
Here's a patch for this. Thanks, James
Description: Fix FTBFS with GCC 5 Author: James Cowgill <james...@cowgill.org.uk> Bug-Debian: https://bugs.debian.org/777779 Forwarded: no --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/icc/icc.h +++ b/icc/icc.h @@ -100,7 +100,11 @@ #define CF64PREC "LL" /* Constant precision specifier */ #ifndef ATTRIBUTE_NORETURN +#ifdef _MSC_VER # define ATTRIBUTE_NORETURN __declspec(noreturn) +#else +# define ATTRIBUTE_NORETURN __attribute__((noreturn)) +#endif #endif #else /* !__STDC_VERSION__ */
signature.asc
Description: This is a digitally signed message part