pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mail/imap-uw Fix a problem where file modification tim...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/230031be8983
branches:  trunk
changeset: 393125:230031be8983
user:      plunky <plunky%pkgsrc.org@localhost>
date:      Sun May 17 16:03:08 2009 +0000

description:
Fix a problem where file modification times were being reset to 0 by
including <utime.h> to make sure that compiler renaming was used to
select __utime50() instead of utime() as 64-bit time_t was being used.

diffstat:

 mail/imap-uw/Makefile         |  3 ++-
 mail/imap-uw/distinfo         |  4 ++--
 mail/imap-uw/patches/patch-ap |  5 +++--
 3 files changed, 7 insertions(+), 5 deletions(-)

diffs (54 lines):

diff -r 022b2b6a479a -r 230031be8983 mail/imap-uw/Makefile
--- a/mail/imap-uw/Makefile     Sun May 17 14:52:46 2009 +0000
+++ b/mail/imap-uw/Makefile     Sun May 17 16:03:08 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.129 2008/12/29 16:29:50 tron Exp $
+# $NetBSD: Makefile,v 1.130 2009/05/17 16:03:08 plunky Exp $
 #
 # ATTENTION:
 # The Kerberos support in this software is known to be problematic. If you
@@ -11,6 +11,7 @@
 
 DISTNAME=      imap-2007e
 PKGNAME=       ${DISTNAME:S/-/-uw-/}
+PKGREVISION=   1
 CATEGORIES=    mail
 MASTER_SITES=  ftp://ftp.cac.washington.edu/imap/
 EXTRACT_SUFX=  .tar.Z
diff -r 022b2b6a479a -r 230031be8983 mail/imap-uw/distinfo
--- a/mail/imap-uw/distinfo     Sun May 17 14:52:46 2009 +0000
+++ b/mail/imap-uw/distinfo     Sun May 17 16:03:08 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.35 2008/12/29 16:29:50 tron Exp $
+$NetBSD: distinfo,v 1.36 2009/05/17 16:03:08 plunky Exp $
 
 SHA1 (imap-2007e.tar.Z) = 24c63cad8d0e74aa76e4341fcfa54d24f23a8c70
 RMD160 (imap-2007e.tar.Z) = 7d6af203419975f763d7ec17b6a4544c94490b50
@@ -16,7 +16,7 @@
 SHA1 (patch-al) = f85551692a8e7e6d7bbdba9aed4850e3a434058b
 SHA1 (patch-am) = f0c5d250d69976c85537c9b8080365e8c2391c9d
 SHA1 (patch-ao) = b23f356cdeaccd996fd2d11b23da265b6b0df49f
-SHA1 (patch-ap) = 266cabd4937105352c474c85f8ff79434fb2f9dd
+SHA1 (patch-ap) = b51fb011198ba699d64e399a142ae0840ef5cbec
 SHA1 (patch-aq) = 33399fb6dd6478d3a89ec1e967b12d93d9a8219b
 SHA1 (patch-ar) = 32f3347697566439b059811be955dc2d3f56cd74
 SHA1 (patch-as) = d07e37e0789251e703805e4d120f6df86d6f5852
diff -r 022b2b6a479a -r 230031be8983 mail/imap-uw/patches/patch-ap
--- a/mail/imap-uw/patches/patch-ap     Sun May 17 14:52:46 2009 +0000
+++ b/mail/imap-uw/patches/patch-ap     Sun May 17 16:03:08 2009 +0000
@@ -1,12 +1,13 @@
-$NetBSD: patch-ap,v 1.2 2007/08/03 17:03:31 obache Exp $
+$NetBSD: patch-ap,v 1.3 2009/05/17 16:03:08 plunky Exp $
 
 --- src/osdep/unix/unix.c.orig 2007-06-18 20:22:43.000000000 +0000
 +++ src/osdep/unix/unix.c
-@@ -42,7 +42,6 @@
+@@ -42,7 +42,7 @@
  #include <stdio.h>
  #include <ctype.h>
  #include <errno.h>
 -extern int errno;             /* just in case */
  #include <signal.h>
++#include <utime.h>    /* need this to get __utime50() prototype on NetBSD */
  #include "mail.h"
  #include "osdep.h"



Home | Main Index | Thread Index | Old Index