From: Felix Fietkau Date: Fri, 29 May 2009 09:25:51 +0000 (+0000) Subject: uClibc: add a wrapper for the missing finite() function X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=5795ce6459ef467d7c2ba7c7a0e4e4f22acf4c22 uClibc: add a wrapper for the missing finite() function SVN-Revision: 16170 --- diff --git a/toolchain/uClibc/patches-0.9.30+nptl/140-math_finite.patch b/toolchain/uClibc/patches-0.9.30+nptl/140-math_finite.patch new file mode 100644 index 0000000000..d8323a40f1 --- /dev/null +++ b/toolchain/uClibc/patches-0.9.30+nptl/140-math_finite.patch @@ -0,0 +1,14 @@ +--- a/include/math.h ++++ b/include/math.h +@@ -299,6 +299,11 @@ + + #endif /* Use ISO C99. */ + ++/* BSD compat */ ++#define finite(x) __finite(x) ++#define finitef(x) __finitef(x) ++#define finitel(x) __finitel(x) ++ + #ifdef __USE_MISC + /* Support for various different standard error handling behaviors. */ + typedef enum diff --git a/toolchain/uClibc/patches-0.9.30.1/170-math_finite.patch b/toolchain/uClibc/patches-0.9.30.1/170-math_finite.patch new file mode 100644 index 0000000000..d8323a40f1 --- /dev/null +++ b/toolchain/uClibc/patches-0.9.30.1/170-math_finite.patch @@ -0,0 +1,14 @@ +--- a/include/math.h ++++ b/include/math.h +@@ -299,6 +299,11 @@ + + #endif /* Use ISO C99. */ + ++/* BSD compat */ ++#define finite(x) __finite(x) ++#define finitef(x) __finitef(x) ++#define finitel(x) __finitel(x) ++ + #ifdef __USE_MISC + /* Support for various different standard error handling behaviors. */ + typedef enum