GNOME Bugzilla – Bug 597537
[streamvolume.c]The cube root function is not defined in Microsoft's CRT
Last modified: 2009-10-07 05:29:29 UTC
Fixed definin cbrt(double x) in the dollowing way: #include <math.h> #ifdef _MSC_VER #define cbrt(x) pow(abs(x),1.0/3.0) #endif
commit 6d40818ec098a8ff8b566bdc539592e20d3ca247 Author: Sebastian Dröge <sebastian.droege@collabora.co.uk> Date: Wed Oct 7 07:28:15 2009 +0200 streamvolume: Define cbrt() if it's not available Fixes build on Win32, bug #597537.