#2668 closed Bugs (fixed)
fenv.h is not supported by uClibc
Reported by: | 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 , 14 years ago
Component: | None → math |
---|---|
Owner: | set to |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [50697]) Fixes #2668.