Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#2668 closed Bugs (fixed)

fenv.h is not supported by uClibc

Reported by: Mike Frysinger <vapier@…> Owned by: John Maddock
Milestone: Boost 1.38.0 Component: math
Version: Boost 1.37.0 Severity: Problem
Keywords: Cc:

Description

since uClibc doesnt support fenv.h, could we add a check for it to boost/math/tools/config.hpp ?

the simple change: --- a/boost/math/tools/config.hpp +++ b/boost/math/tools/config.hpp @@ -219,7 +219,7 @@

} namespace tools }} namespace boost namespace math

-#ifdef linux +#if defined linux && !defined UCLIBC

#include <fenv.h>

Change History (3)

comment:1 by Steven Watanabe, 14 years ago

Component: Nonemath
Owner: set to John Maddock

comment:2 by John Maddock, 14 years ago

Resolution: fixed
Status: newclosed

(In [50697]) Fixes #2668.

comment:3 by John Maddock, 14 years ago

(In [50698]) Fixes #2668.

Note: See TracTickets for help on using tickets.