From 083274742f988f370b4b51dc9bf2fe94d3291628 Mon Sep 17 00:00:00 2001 From: Botond Baranyi <botond.baranyi@ericsson.com> Date: Fri, 1 Dec 2017 10:46:18 +0100 Subject: [PATCH] Fixed Solaris build after float conversion changes Change-Id: I1938973b16da4e0960a8b239f7aee750330b070f Signed-off-by: Botond Baranyi <botond.baranyi@ericsson.com> --- core/Addfunc.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/Addfunc.cc b/core/Addfunc.cc index 149dc2976..8e3eaade1 100644 --- a/core/Addfunc.cc +++ b/core/Addfunc.cc @@ -48,6 +48,10 @@ #define ERRMSG_BUFSIZE 512 +#ifndef INFINITY +#define INFINITY (DBL_MAX*DBL_MAX) +#endif + // table to reverse the hex digits within an octet // input: ABCDEFGH, output: DCBAHGFE static const unsigned char nibble_reverse_table[] = -- GitLab