From: Felipe Sateler <fsateler@debian.org>
Date: Wed, 16 Nov 2016 18:42:00 -0300
Subject: Disable 128bit float constants.

They conflict with --std=c++11 (ie, additional flags are required),
but are not used, so just skip that
---
 lang/LangPrimSource/PyrMathPrim.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lang/LangPrimSource/PyrMathPrim.cpp b/lang/LangPrimSource/PyrMathPrim.cpp
index 16ca148..8a3b15a 100644
--- a/lang/LangPrimSource/PyrMathPrim.cpp
+++ b/lang/LangPrimSource/PyrMathPrim.cpp
@@ -34,6 +34,7 @@
 #include "SC_Endian.h"
 #include "SCBase.h"
 
+#define BOOST_MATH_DISABLE_FLOAT128 1
 #include "boost/math/special_functions.hpp"
 
 const int INT_MAX_BY_PyrSlot = INT_MAX / sizeof(PyrSlot);
