aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-05-29 09:25:51 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-05-29 09:25:51 +0000
commita8dd1273fd54b2ca88e98c0f9494d4b41f7e2e67 (patch)
tree475330ad9c246ad8ed90c4aeabde42e50909a866 /toolchain
parent11ca4fd49bb0874a3810f34a374a946a41177284 (diff)
downloadupstream-a8dd1273fd54b2ca88e98c0f9494d4b41f7e2e67.tar.gz
upstream-a8dd1273fd54b2ca88e98c0f9494d4b41f7e2e67.tar.bz2
upstream-a8dd1273fd54b2ca88e98c0f9494d4b41f7e2e67.zip
uClibc: add a wrapper for the missing finite() function
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16170 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r--toolchain/uClibc/patches-0.9.30+nptl/140-math_finite.patch14
-rw-r--r--toolchain/uClibc/patches-0.9.30.1/170-math_finite.patch14
2 files changed, 28 insertions, 0 deletions
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