From b8f6c140ce4dbf403eb7a2a3f7fe45e7def2f40e Mon Sep 17 00:00:00 2001 From: Mark Harris Date: Mon, 26 May 2014 12:31:40 -0700 Subject: [PATCH] Fix AIX build Fix AIX build failure with IBM xlC compiler due to conflicting definition of M_PI. The libSYS/include/genericStds.h definition is guarded with #ifndef M_PI, but was included before which defines M_PI with more significant digits. --- libSYS/src/genericStds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libSYS/src/genericStds.cpp b/libSYS/src/genericStds.cpp index f0199fb..ef1d4c2 100644 --- a/libSYS/src/genericStds.cpp +++ b/libSYS/src/genericStds.cpp @@ -92,10 +92,10 @@ amm-info@iis.fraunhofer.de #define _CRT_SECURE_NO_WARNINGS -#include "genericStds.h" - #include +#include "genericStds.h" + /* library info */ #define SYS_LIB_VL0 1 #define SYS_LIB_VL1 3