summaryrefslogtreecommitdiff
path: root/meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2011-07-28 11:01:31 +0100
committerSaul Wold <sgw@linux.intel.com>2011-08-01 00:04:09 -0700
commit1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8 (patch)
tree01acabf97db248ef22125c1da7864492fbd7a0f9 /meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff
parentb69a2be2f30dc633597399d42d6c87d9f0910c1a (diff)
downloadopenembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.gz
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.bz2
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.xz
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.zip
glibc: deleted
Glibc 2.10.1 is outdated now and eglibc seems to provide a superset of its functionality. Signed-off-by: Phil Blundell <philb@gnu.org>
Diffstat (limited to 'meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff')
-rw-r--r--meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff27
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff b/meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff
deleted file mode 100644
index bbc75d126..000000000
--- a/meta/recipes-core/glibc/glibc-2.10.1/powerpc-sqrt-hack.diff
+++ /dev/null
@@ -1,27 +0,0 @@
-Upstream-Status: Inappropriate [not used]
-
-diff -Nurd ../glibc-initial-2.5-r4/glibc-2.5/sysdeps/powerpc/fpu/e_sqrt.c glibc-2.5/sysdeps/powerpc/fpu/e_sqrt.c
---- ../glibc-initial-2.5-r4/glibc-2.5/sysdeps/powerpc/fpu/e_sqrt.c 2006-04-14 07:44:30.000000000 +0200
-+++ glibc-2.5/sysdeps/powerpc/fpu/e_sqrt.c 2006-12-08 12:53:32.202227000 +0100
-@@ -25,6 +25,9 @@
- #include <sysdep.h>
- #include <ldsodefs.h>
-
-+#define __CPU_HAS_FSQRT ((GLRO(dl_hwcap) & PPC_FEATURE_64) != 0)
-+
-+
- static const double almost_half = 0.5000000000000001; /* 0.5 + 2^-53 */
- static const ieee_float_shape_type a_nan = {.word = 0x7fc00000 };
- static const ieee_float_shape_type a_inf = {.word = 0x7f800000 };
-diff -Nurd ../glibc-initial-2.5-r4/glibc-2.5/sysdeps/powerpc/fpu/e_sqrtf.c glibc-2.5/sysdeps/powerpc/fpu/e_sqrtf.c
---- ../glibc-initial-2.5-r4/glibc-2.5/sysdeps/powerpc/fpu/e_sqrtf.c 2006-04-14 07:44:30.000000000 +0200
-+++ glibc-2.5/sysdeps/powerpc/fpu/e_sqrtf.c 2006-12-08 12:53:36.992227000 +0100
-@@ -25,6 +25,8 @@
- #include <sysdep.h>
- #include <ldsodefs.h>
-
-+#define __CPU_HAS_FSQRT ((GLRO(dl_hwcap) & PPC_FEATURE_64) != 0)
-+
- static const float almost_half = 0.50000006; /* 0.5 + 2^-24 */
- static const ieee_float_shape_type a_nan = {.word = 0x7fc00000 };
- static const ieee_float_shape_type a_inf = {.word = 0x7f800000 };