diff options
author | nork <nork@FreeBSD.org> | 2003-12-23 03:02:16 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-12-23 03:02:16 +0800 |
commit | 3f547e2f3ad148c2e1b23a44dec99cf1911696a6 (patch) | |
tree | 0f83d53e6ed289da731b3f7d57407ac64057dea5 /lang/php4 | |
parent | 00407225007257212abf0c310b97531db1c79fcf (diff) | |
download | freebsd-ports-gnome-3f547e2f3ad148c2e1b23a44dec99cf1911696a6.tar.gz freebsd-ports-gnome-3f547e2f3ad148c2e1b23a44dec99cf1911696a6.tar.zst freebsd-ports-gnome-3f547e2f3ad148c2e1b23a44dec99cf1911696a6.zip |
[Forced commit]
Remove unnecessary patch, and Bump PORTREVISION.
Submitted by: Alex Dupre <sysadmin@alexdupre.com> (maintainer)
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. |