On Sat, 9 Dec 2017 05:16:58 -0800 (PST)
"T. Modes" <[email protected]> wrote:

> Hi all,

Hi Thomas

> This is a source code release. 
> Users communities produce executables for their respective platforms. 
> Please announce them here.

For Gentoo, I've added an ebuild to my overlay. There seems to be a
compiling issue with gcc-5.4, the attached patch seems to fix the
problem.


Thanks and regards,
Markus

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/20171210102003.64d07732%40dell-xps13.lan.
For more options, visit https://groups.google.com/d/optout.
Only in hugin-2018.0.0/src/hugin_base/panodata: .ParseExp.cpp.swp
diff -ru hugin-2018.0.0.orig/src/hugin_base/panodata/ParseExp.cpp hugin-2018.0.0/src/hugin_base/panodata/ParseExp.cpp
--- hugin-2018.0.0.orig/src/hugin_base/panodata/ParseExp.cpp	2017-12-09 22:09:13.845738965 +0100
+++ hugin-2018.0.0/src/hugin_base/panodata/ParseExp.cpp	2017-12-09 22:10:53.019743694 +0100
@@ -87,7 +87,7 @@
         const double val = rpnStack.top();
         rpnStack.pop();
         const double newVal = m_function(val);
-        if (!isinf(newVal) && !isnan(newVal))
+        if (!std::isinf(newVal) && !std::isnan(newVal))
         {
             rpnStack.push(newVal);
         }
@@ -116,7 +116,7 @@
         const double left = rpnStack.top();
         rpnStack.pop();
         const double newVal = m_function(left, right);
-        if (!isinf(newVal) && !isnan(newVal))
+        if (!std::isinf(newVal) && !std::isnan(newVal))
         {
             rpnStack.push(newVal);
         }

Reply via email to