summaryrefslogtreecommitdiff
path: root/print/ghostscript/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'print/ghostscript/patches/patch-ac')
-rw-r--r--print/ghostscript/patches/patch-ac13
1 files changed, 13 insertions, 0 deletions
diff --git a/print/ghostscript/patches/patch-ac b/print/ghostscript/patches/patch-ac
new file mode 100644
index 00000000000..db2b9ea7e57
--- /dev/null
+++ b/print/ghostscript/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.5 2007/07/18 02:47:02 tnn Exp $
+
+--- src/gpmisc.c.orig 2007-07-18 04:37:50.000000000 +0200
++++ src/gpmisc.c
+@@ -93,7 +93,7 @@ gp_fopentemp_generic(const char *fname,
+ * fdopen as (char *), rather than following the POSIX.1 standard,
+ * which defines it as (const char *). Patch this here.
+ */
+-#if defined (O_LARGEFILE)
++#if defined (HAVE_FILE64)
+ file = (b64 ? fdopen64 : fdopen)(fildes, (char *)mode); /* still really const */
+ #else
+ file = fdopen(fildes, (char *)mode); /* still really const */