Description: Fix FTBFS with GCC 5 Author: James Cowgill Bug-Debian: https://bugs.debian.org/777779 Forwarded: no --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ Index: trunk/icc/icc.h =================================================================== --- trunk.orig/icc/icc.h +++ trunk/icc/icc.h @@ -131,7 +131,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 /* !_MSC_VER */