1--- misc/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp	2011-01-03 23:31:00.000000000 +0000
2+++ misc/build/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp	2015-08-04 23:25:43.468410000 +0000
3@@ -44,7 +44,11 @@
4 //-----------------------------------------------------------------------------
5
6 #if defined(__FreeBSD__) && defined(__GNUC__)
7-   typedef typeof(SIG_DFL) CoinSighandler_t;
8+   #if defined(__clang__)
9+     typedef __decltype(SIG_DFL) CoinSighandler_t;
10+   #else
11+     typedef typeof(SIG_DFL) CoinSighandler_t;
12+   #endif
13 #  define CoinSighandler_t_defined
14 #endif
15
16