pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/ghostscript Don't attempt to use fdopen64 at all...
details: https://anonhg.NetBSD.org/pkgsrc/rev/5ef7f7818da7
branches: trunk
changeset: 531990:5ef7f7818da7
user: tnn <tnn%pkgsrc.org@localhost>
date: Thu Aug 09 18:52:38 2007 +0000
description:
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:
print/ghostscript/distinfo | 4 ++--
print/ghostscript/patches/patch-ac | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (33 lines):
diff -r c72a0fd33fcc -r 5ef7f7818da7 print/ghostscript/distinfo
--- a/print/ghostscript/distinfo Thu Aug 09 18:49:31 2007 +0000
+++ b/print/ghostscript/distinfo Thu Aug 09 18:52:38 2007 +0000
@@ -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 -r c72a0fd33fcc -r 5ef7f7818da7 print/ghostscript/patches/patch-ac
--- a/print/ghostscript/patches/patch-ac Thu Aug 09 18:49:31 2007 +0000
+++ b/print/ghostscript/patches/patch-ac Thu Aug 09 18:52:38 2007 +0000
@@ -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 @@
* 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 */
Home |
Main Index |
Thread Index |
Old Index