diff options
author | tnn <tnn> | 2007-08-09 18:52:38 +0000 |
---|---|---|
committer | tnn <tnn> | 2007-08-09 18:52:38 +0000 |
commit | b334802fd7d0285530805aa53102062ebde9b91b (patch) | |
tree | 1e4212ad0692aa6d9b906ad8d9d3cdd240ecd1a4 /print/ghostscript | |
parent | 2073bc2420347a2153052420a8297736edbd6e08 (diff) | |
download | pkgsrc-b334802fd7d0285530805aa53102062ebde9b91b.tar.gz |
Don't attempt to use fdopen64 at all. It's not a standardised API and none
of the platforms we care about seem to have it. Fixes PR pkg/36757.
Diffstat (limited to 'print/ghostscript')
-rw-r--r-- | print/ghostscript/distinfo | 4 | ||||
-rw-r--r-- | print/ghostscript/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/print/ghostscript/distinfo b/print/ghostscript/distinfo index 479da6632be..756f6c9e92c 100644 --- a/print/ghostscript/distinfo +++ b/print/ghostscript/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.11 2007/08/08 17:32:07 joerg Exp $ +$NetBSD: distinfo,v 1.12 2007/08/09 18:52:38 tnn Exp $ SHA1 (ghostscript-8.60.tar.bz2) = f0045b5055d7f83bf34b205976f73a7dafdac863 RMD160 (ghostscript-8.60.tar.bz2) = 208168fcd6bc5fd931d15b288ce9324f59ba07a3 Size (ghostscript-8.60.tar.bz2) = 12942029 bytes SHA1 (patch-aa) = b12a8c2fb03ac12b65f986b4c7d6ef81a29d3685 SHA1 (patch-ab) = 2477242c4c5f6b6feaaa217deb1aa37485f2fac5 -SHA1 (patch-ac) = f13cea6787a848b637a44d1e8e15507236d0d659 +SHA1 (patch-ac) = cda7b4ce19d15f49519e415bfbf9463328e2ca6f SHA1 (patch-ad) = 8b3b743b2d6405ea35bfb16970942ecd55702401 diff --git a/print/ghostscript/patches/patch-ac b/print/ghostscript/patches/patch-ac index 2680406237c..bfc29705350 100644 --- a/print/ghostscript/patches/patch-ac +++ b/print/ghostscript/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.6 2007/08/03 20:02:30 joerg Exp $ +$NetBSD: patch-ac,v 1.7 2007/08/09 18:52:38 tnn Exp $ --- src/gpmisc.c.orig 2007-07-18 04:37:50.000000000 +0200 +++ src/gpmisc.c @@ -7,7 +7,7 @@ $NetBSD: patch-ac,v 1.6 2007/08/03 20:02:30 joerg Exp $ * which defines it as (const char *). Patch this here. */ -#if defined (O_LARGEFILE) -+#if defined (HAVE_FILE64) && !defined(_AIX) ++#if 0 file = (b64 ? fdopen64 : fdopen)(fildes, (char *)mode); /* still really const */ #else file = fdopen(fildes, (char *)mode); /* still really const */ |