summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-12-01 12:42:48 -0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-12-06 22:02:20 +0000
commit4b791501ed1aa506c3109891d21cae170cc38fd9 (patch)
treee76ea6c59b33c2dfcb1550c7a35bdbf489bdac82 /meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch
parent37b6d8bcc74a5d6c024b9a722e4714b54e62c217 (diff)
downloadpoky-4b791501ed1aa506c3109891d21cae170cc38fd9.tar.gz
tcl: upgrade from 8.5.8 to 8.5.9
Rebased this patch to the newer upstream code. modified: fix_non_native_build_issue.patch Deleted following patch as the newer upstream code includes it already. deleted: tcl/mips-tclstrtod.patch tcl: update checksums Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch b/meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch
deleted file mode 100644
index c1e0d63324..0000000000
--- a/meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1http://sourceforge.net/tracker/index.php?func=detail&aid=2902010&group_id=10894&atid=110894
2
3Pulled from OE by: Saul Wold <saul.wold@intel.com>
4
5--- ../generic/tclStrToD.c.orig
6+++ ../generic/tclStrToD.c
7@@ -71,9 +71,10 @@
8
9 /*
10 * MIPS floating-point units need special settings in control registers
11- * to use gradual underflow as we expect.
12+ * to use gradual underflow as we expect. This fix is for the MIPSpro
13+ * compiler.
14 */
15-#if defined(__mips)
16+#if defined(__sgi) && defined(_COMPILER_VERSION)
17 #include <sys/fpu.h>
18 #endif
19 /*
20@@ -2166,7 +2167,7 @@
21 } bitwhack;
22 #endif
23
24-#if defined(__mips)
25+#if defined(__sgi) && defined(_COMPILER_VERSION)
26 union fpc_csr mipsCR;
27
28 mipsCR.fc_word = get_fpc_csr();