pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/print/ghostscript replace BSD/Linux specific "qd" prin...
details: https://anonhg.NetBSD.org/pkgsrc/rev/83ebfbd8c0ae
branches: trunk
changeset: 554586:83ebfbd8c0ae
user: drochner <drochner%pkgsrc.org@localhost>
date: Mon Feb 16 16:31:30 2009 +0000
description:
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:
print/ghostscript/distinfo | 4 ++--
print/ghostscript/patches/patch-ai | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (33 lines):
diff -r 1a2fe7aa963d -r 83ebfbd8c0ae print/ghostscript/distinfo
--- a/print/ghostscript/distinfo Mon Feb 16 16:29:18 2009 +0000
+++ b/print/ghostscript/distinfo Mon Feb 16 16:31:30 2009 +0000
@@ -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-af) = e4d56f13f5eb595a3929aac6c257012961f59c2b
SHA1 (patch-ag) = dd452d29253e20bb8fa453a1e4f139a40b2ab3e3
SHA1 (patch-ah) = efc85dead838505ee462714167f196db2deeb0aa
-SHA1 (patch-ai) = 525b1a00f12027e2ff72f40ddd764fec1622d430
+SHA1 (patch-ai) = ad69ddd4a4bd50cf2263ac6c6d17a59798ef3124
diff -r 1a2fe7aa963d -r 83ebfbd8c0ae print/ghostscript/patches/patch-ai
--- a/print/ghostscript/patches/patch-ai Mon Feb 16 16:29:18 2009 +0000
+++ b/print/ghostscript/patches/patch-ai Mon Feb 16 16:31:30 2009 +0000
@@ -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 @@
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++) {
Home |
Main Index |
Thread Index |
Old Index