diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-12-01 12:42:48 -0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-06 22:02:20 +0000 |
commit | 4b791501ed1aa506c3109891d21cae170cc38fd9 (patch) | |
tree | e76ea6c59b33c2dfcb1550c7a35bdbf489bdac82 /meta/recipes-devtools/tcltk | |
parent | 37b6d8bcc74a5d6c024b9a722e4714b54e62c217 (diff) | |
download | openembedded-core-contrib-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')
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch | 46 | ||||
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch | 28 | ||||
-rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.5.9.bb (renamed from meta/recipes-devtools/tcltk/tcl_8.5.8.bb) | 8 |
3 files changed, 28 insertions, 54 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch b/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch index b2d98c131c6..0b8b26cae28 100644 --- a/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch +++ b/meta/recipes-devtools/tcltk/tcl/fix_non_native_build_issue.patch @@ -2,62 +2,62 @@ Index: unix/Makefile.in =================================================================== --- unix.orig/Makefile.in +++ unix/Makefile.in -@@ -622,20 +622,20 @@ ro-test: tcltest - shell: tclsh +@@ -619,20 +619,20 @@ ro-test: tcltest@EXEEXT@ + shell: ${TCL_EXE} @LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ -- ./tclsh $(SCRIPT) -+ tclsh $(SCRIPT) +- ./${TCL_EXE} $(SCRIPT) ++ ${TCL_EXE} $(SCRIPT) # This target can be used to run tclsh inside either gdb or insight - gdb: tclsh + gdb: ${TCL_EXE} @echo "set env @LD_LIBRARY_PATH_VAR@=\"`pwd`:$${@LD_LIBRARY_PATH_VAR@}\"" > gdb.run @echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run -- $(GDB) ./tclsh --command=gdb.run -+ $(GDB) tclsh --command=gdb.run +- $(GDB) ./${TCL_EXE} --command=gdb.run ++ $(GDB) ${TCL_EXE} --command=gdb.run rm gdb.run # This target can be used to run tclsh inside ddd - ddd: tclsh + ddd: ${TCL_EXE} @echo "set env @LD_LIBRARY_PATH_VAR@=\"`pwd`:$${@LD_LIBRARY_PATH_VAR@}\"" > gdb.run @echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run -- $(DDD) -command=gdb.run ./tclsh -+ $(DDD) -command=gdb.run tclsh +- $(DDD) -command=gdb.run ./${TCL_EXE} ++ $(DDD) -command=gdb.run ${TCL_EXE} rm gdb.run VALGRINDARGS=--tool=memcheck --num-callers=8 --leak-resolution=high --leak-check=yes --show-reachable=yes -v -@@ -648,7 +648,7 @@ valgrind: tclsh tcltest - valgrindshell: tclsh +@@ -645,7 +645,7 @@ valgrind: ${TCL_EXE} tcltest@EXEEXT@ + valgrindshell: ${TCL_EXE} @LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ -- valgrind $(VALGRINDARGS) ./tclsh $(SCRIPT) -+ valgrind $(VALGRINDARGS) tclsh $(SCRIPT) +- valgrind $(VALGRINDARGS) ./${TCL_EXE} $(SCRIPT) ++ valgrind $(VALGRINDARGS) ${TCL_EXE} $(SCRIPT) # The following target outputs the name of the top-level source directory for # Tcl (it is used by Tk's configure script, for example). The .NO_PARALLEL -@@ -817,14 +817,14 @@ install-tzdata: tclsh +@@ -809,14 +809,14 @@ install-tzdata: ${TCL_EXE} @echo "Installing time zone data" @@LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ -- ./tclsh $(TOOL_DIR)/installData.tcl \ -+ tclsh $(TOOL_DIR)/installData.tcl \ +- ./${TCL_EXE} $(TOOL_DIR)/installData.tcl \ ++ ${TCL_EXE} $(TOOL_DIR)/installData.tcl \ $(TOP_DIR)/library/tzdata "$(SCRIPT_INSTALL_DIR)"/tzdata - install-msgs: tclsh + install-msgs: ${TCL_EXE} @echo "Installing message catalogs" @@LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ -- ./tclsh $(TOOL_DIR)/installData.tcl \ -+ tclsh $(TOOL_DIR)/installData.tcl \ +- ./${TCL_EXE} $(TOOL_DIR)/installData.tcl \ ++ ${TCL_EXE} $(TOOL_DIR)/installData.tcl \ $(TOP_DIR)/library/msgs "$(SCRIPT_INSTALL_DIR)"/msgs install-doc: doc -@@ -1764,7 +1764,7 @@ html-tk: tclsh +@@ -1756,7 +1756,7 @@ html-tk: ${TCL_EXE} BUILD_HTML = \ @@LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \ -- ./tclsh $(TOOL_DIR)/tcltk-man2html.tcl --htmldir="$(HTML_INSTALL_DIR)" \ -+ tclsh $(TOOL_DIR)/tcltk-man2html.tcl --htmldir="$(HTML_INSTALL_DIR)" \ +- ./${TCL_EXE} $(TOOL_DIR)/tcltk-man2html.tcl --htmldir="$(HTML_INSTALL_DIR)" \ ++ ${TCL_EXE} $(TOOL_DIR)/tcltk-man2html.tcl --htmldir="$(HTML_INSTALL_DIR)" \ --srcdir=$(TOP_DIR)/.. $(BUILD_HTML_FLAGS) # 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 c1e0d633243..00000000000 --- a/meta/recipes-devtools/tcltk/tcl/mips-tclstrtod.patch +++ /dev/null @@ -1,28 +0,0 @@ -http://sourceforge.net/tracker/index.php?func=detail&aid=2902010&group_id=10894&atid=110894 - -Pulled from OE by: Saul Wold <saul.wold@intel.com> - ---- ../generic/tclStrToD.c.orig -+++ ../generic/tclStrToD.c -@@ -71,9 +71,10 @@ - - /* - * MIPS floating-point units need special settings in control registers -- * to use gradual underflow as we expect. -+ * to use gradual underflow as we expect. This fix is for the MIPSpro -+ * compiler. - */ --#if defined(__mips) -+#if defined(__sgi) && defined(_COMPILER_VERSION) - #include <sys/fpu.h> - #endif - /* -@@ -2166,7 +2167,7 @@ - } bitwhack; - #endif - --#if defined(__mips) -+#if defined(__sgi) && defined(_COMPILER_VERSION) - union fpc_csr mipsCR; - - mipsCR.fc_word = get_fpc_csr(); diff --git a/meta/recipes-devtools/tcltk/tcl_8.5.8.bb b/meta/recipes-devtools/tcltk/tcl_8.5.9.bb index 1edb57bf0de..aa1805b8616 100644 --- a/meta/recipes-devtools/tcltk/tcl_8.5.8.bb +++ b/meta/recipes-devtools/tcltk/tcl_8.5.9.bb @@ -11,14 +11,16 @@ LIC_CHKSUM_FILES = "file://../license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 file://../win/license.terms;md5=7b4d3c71b2d9a8c1b373609867975570 \ " -PR = "r4" +PR = "r0" BASE_SRC_URI = "${SOURCEFORGE_MIRROR}/tcl/tcl${PV}-src.tar.gz \ file://tcl-add-soname.patch" SRC_URI = "${BASE_SRC_URI} \ - file://fix_non_native_build_issue.patch \ - file://mips-tclstrtod.patch;striplevel=0" + file://fix_non_native_build_issue.patch " + +SRC_URI[md5sum] = "8512d8db3233041dd68a81476906012a" +SRC_URI[sha256sum] = "3ab671b417e3eeb41b9cef626d742d8f7f57425101e83e5fcad1d552cd99237d" SRC_URI_virtclass-native = "${BASE_SRC_URI}" |