diff options
author | plunky <plunky@pkgsrc.org> | 2009-05-17 17:34:01 +0000 |
---|---|---|
committer | plunky <plunky@pkgsrc.org> | 2009-05-17 17:34:01 +0000 |
commit | 368ad4cd2132ccdafc0d62ec1bff831e7362c01d (patch) | |
tree | db3225ce080f471e834ae64643842f3908f621d8 /mail/alpine/Makefile | |
parent | 1f2178aa3fd4e27ef67813c989a67bb0964b28ec (diff) | |
download | pkgsrc-368ad4cd2132ccdafc0d62ec1bff831e7362c01d.tar.gz |
include <time.h> and <utime.h> so that where time_t has been changed to 64-bit
values on NetBSD, we we get correctly referred to __utime50() which can handle
64-bit values. This fixes a problem where mailbox mtimes were being reset to 0
Note that this actually causes some build warnings as the code uses
"time_t tp[2]" instead of "struct utimbuf tp" (contains two time_t values)
Although the <os_bsi.h> file says it is used for BSDI, it seems to be used by
NetBSD and OpenBSD, both of which have the <utime.h> and <time.h>
bump PKGREVISION
Diffstat (limited to 'mail/alpine/Makefile')
-rw-r--r-- | mail/alpine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/alpine/Makefile b/mail/alpine/Makefile index 0b7094e48fc..d55cc6f0442 100644 --- a/mail/alpine/Makefile +++ b/mail/alpine/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2009/05/01 11:58:46 abs Exp $ +# $NetBSD: Makefile,v 1.20 2009/05/17 17:34:01 plunky Exp $ # DISTNAME= alpine-2.00 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail MASTER_SITES= ftp://ftp.cac.washington.edu/alpine/ DIST_SUBDIR= alpine-2.00 |