Patch #27842: build fix for solaris, missing finite(). Patch by A. Hettinger.

This commit is contained in:
Brecht Van Lommel 2011-07-05 19:04:38 +00:00
parent 81ad6fa4e6
commit 87c2842630

@ -39,6 +39,10 @@
#include <math.h>
#include "BLI_math_inline.h"
#ifdef __sun__
#include <ieeefp.h> /* for finite() */
#endif
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif