NBlood - r2001 - Built: Tue 31 Dec 11:00:01 EET 2019 --- commit a8b09ac222c38f41c6e4c0b18e744c2a40ce80e2 Merge: 873c1e1 0d219bb Author: Alexey Khokholov Date: Tue Dec 31 16:13:38 2019 +0900 Merge pull request #256 from jonathangray/exhumed-fixes PCExhumed build fixes commit 0d219bb770e72b11bc685cd7247273e66c62ed8e Author: Jonathan Gray Date: Tue Dec 31 16:56:13 2019 +1100 PCExhumed: fix triddat.cpp build with libc++ Include cstdlib for abs() with an int argument. Fixes the following compile error with libc++. source/exhumed/src/trigdat.cpp:159:9: error: call to 'abs' is ambiguous if (abs(diff) > c) ^~~ /usr/include/c++/v1/math.h:761:1: note: candidate function abs(float __lcpp_x) _NOEXCEPT {return ::fabsf(__lcpp_x);} ^ /usr/include/c++/v1/math.h:765:1: note: candidate function abs(double __lcpp_x) _NOEXCEPT {return ::fabs(__lcpp_x);} ^ /usr/include/c++/v1/math.h:769:1: note: candidate function abs(long double __lcpp_x) _NOEXCEPT {return ::fabsl(__lcpp_x);} ^ 1 error generated. commit 528812d30e79c606a297d302510a4059c2980b9c Author: Jonathan Gray Date: Tue Dec 31 16:51:18 2019 +1100 PCExhumed: remove uneeded malloc.h include malloc.h is a non-standard header and isn't required here fixes build on OpenBSD which has no malloc.h