diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-12-22 19:02:16 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-12-22 19:02:16 +0000 |
commit | 53e6a7c4511ca5196c8599e0aa087217b7753dda (patch) | |
tree | bac1847f5e3281291ff3dcac7cb4e620a17f459e /lang/php4 | |
parent | 9440d2d63168507c2a65d41cb816b15fc71003ec (diff) | |
download | ports-53e6a7c4511ca5196c8599e0aa087217b7753dda.tar.gz ports-53e6a7c4511ca5196c8599e0aa087217b7753dda.zip |
Notes
Diffstat (limited to 'lang/php4')
-rw-r--r-- | lang/php4/files/patch-ext::standard::datetime.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/php4/files/patch-ext::standard::datetime.c b/lang/php4/files/patch-ext::standard::datetime.c deleted file mode 100644 index 24dc2963df17..000000000000 --- a/lang/php4/files/patch-ext::standard::datetime.c +++ /dev/null @@ -1,17 +0,0 @@ ---- ext/standard/datetime.c.orig Tue Aug 26 11:06:04 2003 -+++ ext/standard/datetime.c Tue Aug 26 11:07:27 2003 -@@ -116,7 +116,13 @@ - /* Let DST be unknown. mktime() should compute the right value - ** and behave correctly. Unless the user overrides this. - */ -- ta->tm_isdst = -1; -+ if (gm) { -+ ta->tm_isdst = 0; -+ is_dst = 0; -+ } else { -+ ta->tm_isdst = -1; -+ is_dst = -1; -+ } - - /* - ** Now change date values with supplied parameters. |