diff options
author | tron <tron> | 2012-08-09 18:07:35 +0000 |
---|---|---|
committer | tron <tron> | 2012-08-09 18:07:35 +0000 |
commit | 7ea75d169e578eab4378d0555ab892c3bea3c72c (patch) | |
tree | bce7c478d2776fa83fffb766dbb91bba7b805c90 | |
parent | e846380fbdeab53999cd7fed7fe724be054a1508 (diff) | |
download | pkgsrc-7ea75d169e578eab4378d0555ab892c3bea3c72c.tar.gz |
Pullup ticket #3891 - requested by is
sysutils/mtools: bug fix patch
Revisions pulled up:
- sysutils/mtools/Makefile 1.50
- sysutils/mtools/distinfo 1.18
---
Module Name: pkgsrc
Committed By: is
Date: Wed Aug 8 08:46:27 UTC 2012
Modified Files:
pkgsrc/sysutils/mtools: Makefile distinfo
Log Message:
mtools-(at least)4.0.17 tries hard to configure and conditionally set types
to use 64bit file offsets where available for seek()ing etc. However, the
easy case (sizeof(off_t)>4) is handled incorrectly: mt_size_t is set to
size_t - maybe a copy and paste from the fall-back-to-32bit case.
This type is used at least in init.c, when detecting media size and comparing
to the FAT geometry, consequently failing and erroring out with the message
"Big disks not supported on this architecture."
The patch does handle the (e.g. NetBSD) case of 64bit off_t the same as
the case where a off64_t is available (and the other 64bit off_t-equivalent
cases); namely using off_t as mt_size_t.
Thanks to riastradh@ for pointing out where the bug in llong.h was.
-rw-r--r-- | sysutils/mtools/Makefile | 3 | ||||
-rw-r--r-- | sysutils/mtools/distinfo | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sysutils/mtools/Makefile b/sysutils/mtools/Makefile index fe94eb199f0..3bfc7d431cd 100644 --- a/sysutils/mtools/Makefile +++ b/sysutils/mtools/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.49 2012/03/18 12:41:53 shattered Exp $ +# $NetBSD: Makefile,v 1.49.4.1 2012/08/09 18:07:35 tron Exp $ DISTNAME= mtools-4.0.17 +PKGREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.mtools.linux.lu/ EXTRACT_SUFX= .tar.bz2 diff --git a/sysutils/mtools/distinfo b/sysutils/mtools/distinfo index 52e1f072ce4..08cd4fb4fc2 100644 --- a/sysutils/mtools/distinfo +++ b/sysutils/mtools/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2012/03/18 12:41:53 shattered Exp $ +$NetBSD: distinfo,v 1.17.4.1 2012/08/09 18:07:35 tron Exp $ SHA1 (mtools-4.0.17.tar.bz2) = ab16d292c5098ae94d83a48094c137c2a5c3b101 RMD160 (mtools-4.0.17.tar.bz2) = 2e55692fa31d02e86bcab0d1e55ed1755b2bab64 @@ -6,3 +6,4 @@ Size (mtools-4.0.17.tar.bz2) = 412310 bytes SHA1 (patch-aa) = 493b06455ee3169e6db916a9d535dad5a124edbc SHA1 (patch-ae) = 5281829c8c79f95ff4672fabb53acd22685c17bb SHA1 (patch-af) = fcf66c887f9513d812c01ff314669959f94ed7b3 +SHA1 (patch-llong.h) = 350158693991dc3fca440f5fee4bcda8398c80e9 |