summaryrefslogtreecommitdiff
path: root/mail/imap-uw
diff options
context:
space:
mode:
authorplunky <plunky>2009-05-17 16:03:08 +0000
committerplunky <plunky>2009-05-17 16:03:08 +0000
commit5756d083221f9e6a2bb521e238ee4e0659d50fac (patch)
tree14e701e6af4b0cd933b91d9340377d5a3016127e /mail/imap-uw
parent0b4a7617ac1d8d0fac620ca3036feefae8ba0998 (diff)
downloadpkgsrc-5756d083221f9e6a2bb521e238ee4e0659d50fac.tar.gz
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 (limited to 'mail/imap-uw')
-rw-r--r--mail/imap-uw/Makefile3
-rw-r--r--mail/imap-uw/distinfo4
-rw-r--r--mail/imap-uw/patches/patch-ap5
3 files changed, 7 insertions, 5 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile
index 34183efbfc3..2775247574c 100644
--- a/mail/imap-uw/Makefile
+++ b/mail/imap-uw/Makefile
@@ -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 --git a/mail/imap-uw/distinfo b/mail/imap-uw/distinfo
index 9f1134ccfd8..7318a414b85 100644
--- a/mail/imap-uw/distinfo
+++ b/mail/imap-uw/distinfo
@@ -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-aj) = d9edbd39d552b70561c8df8d1d34568cec528cf9
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 --git a/mail/imap-uw/patches/patch-ap b/mail/imap-uw/patches/patch-ap
index 5a8de7e207a..6fae4fbe55d 100644
--- a/mail/imap-uw/patches/patch-ap
+++ b/mail/imap-uw/patches/patch-ap
@@ -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"