pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/lftp Add companion patch to previous commit.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ae8551bfe287
branches:  trunk
changeset: 394862:ae8551bfe287
user:      tnn <tnn%pkgsrc.org@localhost>
date:      Wed Jun 17 08:40:57 2009 +0000

description:
Add companion patch to previous commit.
Fix build on NetBSD-current/i386 by papering over a build time assertion.
(Probably due to 64-bit time_t.)

diffstat:

 net/lftp/distinfo         |   3 ++-
 net/lftp/patches/patch-ag |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (33 lines):

diff -r cb7d6d50fcd6 -r ae8551bfe287 net/lftp/distinfo
--- a/net/lftp/distinfo Wed Jun 17 08:34:07 2009 +0000
+++ b/net/lftp/distinfo Wed Jun 17 08:40:57 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.45 2009/06/17 08:34:07 tnn Exp $
+$NetBSD: distinfo,v 1.46 2009/06/17 08:40:57 tnn Exp $
 
 SHA1 (lftp-3.7.14.tar.bz2) = b36819aa9624057f1c9067867579c2ac509c72e7
 RMD160 (lftp-3.7.14.tar.bz2) = b6c7bfc5d33b607203afa6784c2db5ece6d2716b
@@ -9,3 +9,4 @@
 SHA1 (patch-ad) = a8a335baf0c9a2a89c58c7395c879d2e8b0c4407
 SHA1 (patch-ae) = 3ee418b94cc1afb7b2db5bc550fd966d346368a4
 SHA1 (patch-af) = 69c414ab28cbdfb86e4981fb7eaa7985b8384838
+SHA1 (patch-ag) = 9eda126e106cee0cae6be691ad8bece921c9c0a9
diff -r cb7d6d50fcd6 -r ae8551bfe287 net/lftp/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/net/lftp/patches/patch-ag Wed Jun 17 08:40:57 2009 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ag,v 1.1 2009/06/17 08:40:57 tnn Exp $
+
+--- lib/mktime.c.orig  2009-01-16 08:58:41.000000000 +0100
++++ lib/mktime.c
+@@ -165,8 +165,10 @@ ydhms_diff (long int year1, long int yda
+           int year0, int yday0, int hour0, int min0, int sec0)
+ {
+   verify (C99_integer_division, -1 / 2 == 0);
++/* This assertion fails on NetBSD-current/i386 due to 64-bit time_t
+   verify (long_int_year_and_yday_are_wide_enough,
+         INT_MAX <= LONG_MAX / 2 || TIME_T_MAX <= UINT_MAX);
++*/
+ 
+   /* Compute intervening leap days correctly even if year is negative.
+      Take care to avoid integer overflow here.  */



Home | Main Index | Thread Index | Old Index