summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch
diff options
context:
space:
mode:
authorLaurentiu Palcu <laurentiu.palcu@intel.com>2013-10-16 15:41:00 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-10-26 15:59:11 +0100
commit3347bc49645d2d8623011e3719f68afb9f3f8d90 (patch)
tree0e59a9efecb9d9582764e547241602d4a0213ece /meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch
parent4d68d36dbe6d04e06dcead56b29223dc34eef843 (diff)
downloadpoky-3347bc49645d2d8623011e3719f68afb9f3f8d90.tar.gz
tcl: upgrade to 8.6.1
Following patches were removed/refreshed: * let-DST-include-year-2099.patch - removed, fixed upstream * tcl-add-soname.patch - refreshed (From OE-Core rev: 0d8ff52a4c2e31c28ef9b50a4c3a380cf263992b) Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch')
-rw-r--r--meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch b/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch
deleted file mode 100644
index eef18128e1..0000000000
--- a/meta/recipes-devtools/tcltk/tcl/let-DST-include-year-2099.patch
+++ /dev/null
@@ -1,35 +0,0 @@
1From f10135df3f4751d7c83a66561c988ae799b6372f Mon Sep 17 00:00:00 2001
2From: "Song.Li" <Song.Li@windriver.com>
3Date: Fri, 10 Aug 2012 13:07:20 +0800
4Subject: [PATCH] let DST include year 2099
5
6tcl puts Daylight Saving Time in deffect from 1916 to 2099,
7it should include the year 2099,becuase tcl
8self-contained testing have a DST testcase on 2099.
9so the condition statement "<2099" should be "<=2099"
10
11Upstream-Status: Submitted
12
13Signed-off-by: Song.Li <Song.Li@windriver.com>
14Signed-off-by: Kai Kang <kai.kang@windriver.com>
15
16---
17 library/clock.tcl | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/library/clock.tcl b/library/clock.tcl
21index 2e9cae7..e8efe4a 100644
22--- a/library/clock.tcl
23+++ b/library/clock.tcl
24@@ -3945,7 +3945,7 @@ proc ::tcl::clock::ProcessPosixTimeZone { z } {
25
26 # Put DST in effect in all years from 1916 to 2099.
27
28- for { set y 1916 } { $y < 2099 } { incr y } {
29+ for { set y 1916 } { $y <= 2099 } { incr y } {
30 set startTime [DeterminePosixDSTTime $z start $y]
31 incr startTime [expr { - wide($stdOffset) }]
32 set endTime [DeterminePosixDSTTime $z end $y]
33--
341.7.9.5
35