diff options
-rw-r--r-- | src/powerlist.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/powerlist.cc b/src/powerlist.cc index 6cff863..4248b30 100644 --- a/src/powerlist.cc +++ b/src/powerlist.cc @@ -28,14 +28,16 @@ #include <stdlib.h> -// Otherwise M_PI is not defined in math.h on some older platforms... -#define _USE_MATH_DEFINES -#include <math.h> - #include <string.h> #include <hugin.hpp> +// M_PI is not defined in math.h if __STRICT_ANSI__ is defined. +#ifdef __STRICT_ANSI__ +#undef __STRICT_ANSI__ +#endif +#include <math.h> + /** * Minimum sample set size. * Smaller means wider 'velocity groups'. |