From 40a3261d1a6e2617f6afde0cd6d762a7e211af7a Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Sun, 16 Oct 2005 07:41:55 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'RELEASE_6_0_0'. --- lang/perl5.6/files/patch-POSIX.xs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 lang/perl5.6/files/patch-POSIX.xs (limited to 'lang/perl5.6/files/patch-POSIX.xs') diff --git a/lang/perl5.6/files/patch-POSIX.xs b/lang/perl5.6/files/patch-POSIX.xs deleted file mode 100644 index 7a3caa960822..000000000000 --- a/lang/perl5.6/files/patch-POSIX.xs +++ /dev/null @@ -1,19 +0,0 @@ ---- ext/POSIX/POSIX.xs.orig Tue Feb 1 11:55:24 2005 -+++ ext/POSIX/POSIX.xs Tue Feb 1 11:56:43 2005 -@@ -3860,6 +3860,16 @@ - mytm.tm_yday = yday; - mytm.tm_isdst = isdst; - mini_mktime(&mytm); -+ /* use libc to normalize the thing -- @@@ -- FreeBSD PR 74042, perl bug 18238 */ -+ { -+ struct tm mytm2; -+ time_t t; -+ mytm2 = mytm; -+ t = mktime(&mytm2); -+ mytm2 = *localtime(&t); -+ mytm.tm_gmtoff = mytm2.tm_gmtoff; -+ mytm.tm_zone = mytm2.tm_zone; -+ } - len = strftime(tmpbuf, sizeof tmpbuf, fmt, &mytm); - /* - ** The following is needed to handle to the situation where -- cgit v1.2.3