summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authordrochner <drochner>2009-02-16 16:31:30 +0000
committerdrochner <drochner>2009-02-16 16:31:30 +0000
commita0492e8d2dc582f74d36e2e9e0462157b6f950a6 (patch)
tree50214c3e0e48fc38f5ef25b4aef8898ca3501fdc /print
parentff759c07ea39571de5136dbce456f0d2180d3791 (diff)
downloadpkgsrc-a0492e8d2dc582f74d36e2e9e0462157b6f950a6.tar.gz
replace BSD/Linux specific "qd" printf format specifier by "lld",
should fix build problem on Solaris reported by Joern Clausen per PR pkg/40664
Diffstat (limited to 'print')
-rw-r--r--print/ghostscript/distinfo4
-rw-r--r--print/ghostscript/patches/patch-ai4
2 files changed, 4 insertions, 4 deletions
diff --git a/print/ghostscript/distinfo b/print/ghostscript/distinfo
index c9c9a410566..8da7cd960cf 100644
--- a/print/ghostscript/distinfo
+++ b/print/ghostscript/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.20 2009/02/13 15:31:35 drochner Exp $
+$NetBSD: distinfo,v 1.21 2009/02/16 16:31:30 drochner Exp $
SHA1 (ghostscript-8.64.tar.bz2) = 4c2a6e04145428d35da73fbc4db9c66a75e336e0
RMD160 (ghostscript-8.64.tar.bz2) = 565134dcfe1e823b435c3761461c5eb394bd633c
@@ -9,4 +9,4 @@ SHA1 (patch-ae) = 50335e72adebe95ab0cb5873d1c6dd00e971579a
SHA1 (patch-af) = e4d56f13f5eb595a3929aac6c257012961f59c2b
SHA1 (patch-ag) = dd452d29253e20bb8fa453a1e4f139a40b2ab3e3
SHA1 (patch-ah) = efc85dead838505ee462714167f196db2deeb0aa
-SHA1 (patch-ai) = 525b1a00f12027e2ff72f40ddd764fec1622d430
+SHA1 (patch-ai) = ad69ddd4a4bd50cf2263ac6c6d17a59798ef3124
diff --git a/print/ghostscript/patches/patch-ai b/print/ghostscript/patches/patch-ai
index 7355aa8b940..337d58b866a 100644
--- a/print/ghostscript/patches/patch-ai
+++ b/print/ghostscript/patches/patch-ai
@@ -1,4 +1,4 @@
-$NetBSD: patch-ai,v 1.3 2009/02/13 15:31:35 drochner Exp $
+$NetBSD: patch-ai,v 1.4 2009/02/16 16:31:30 drochner Exp $
--- base/mkromfs.c.orig 2009-02-13 12:20:54.000000000 +0100
+++ base/mkromfs.c
@@ -7,7 +7,7 @@ $NetBSD: patch-ai,v 1.3 2009/02/13 15:31:35 drochner Exp $
fprintf(out,"\n#include \"stdint_.h\"\n");
fprintf(out,"\n#include \"time_.h\"\n\n");
- fprintf(out," time_t gs_romfs_buildtime = %ld;\n\n", time(NULL));
-+ fprintf(out," time_t gs_romfs_buildtime = %qd;\n\n", (int64_t)time(NULL));
++ fprintf(out," time_t gs_romfs_buildtime = %lld;\n\n", (long long)time(NULL));
/* process the remaining arguments (options interspersed with paths) */
for (; atarg < argc; atarg++) {