pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/finance/gnucash-devel Add patch that should fix build ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c99f99705f30
branches: trunk
changeset: 509828:c99f99705f30
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue Mar 14 23:36:11 2006 +0000
description:
Add patch that should fix build on amd64.
diffstat:
finance/gnucash-devel/distinfo | 3 ++-
finance/gnucash-devel/patches/patch-ad | 22 ++++++++++++++++++++++
2 files changed, 24 insertions(+), 1 deletions(-)
diffs (40 lines):
diff -r be13f05a519d -r c99f99705f30 finance/gnucash-devel/distinfo
--- a/finance/gnucash-devel/distinfo Tue Mar 14 23:32:50 2006 +0000
+++ b/finance/gnucash-devel/distinfo Tue Mar 14 23:36:11 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2006/03/13 21:23:03 joerg Exp $
+$NetBSD: distinfo,v 1.6 2006/03/14 23:36:11 wiz Exp $
SHA1 (gnucash-1.9.2.tar.gz) = beb5e16a69d9b6f9e51a90f8b9128272654f3246
RMD160 (gnucash-1.9.2.tar.gz) = b3a43a3157c7f1770715a9a333097e77b90d6c47
@@ -6,3 +6,4 @@
SHA1 (patch-aa) = db08a08fe8181822c1038d0adb3174dc2ebbcc12
SHA1 (patch-ab) = c4a8f0bf0276424d5d7fc77b99d2757a9f1d56c0
SHA1 (patch-ac) = e151916a2434a709c32c6a7169ddc287a0d5d229
+SHA1 (patch-ad) = a28ccd08bb8c4a654bb5bdf619888925c854d53f
diff -r be13f05a519d -r c99f99705f30 finance/gnucash-devel/patches/patch-ad
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/finance/gnucash-devel/patches/patch-ad Tue Mar 14 23:36:11 2006 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ad,v 1.1 2006/03/14 23:36:11 wiz Exp $
+
+--- src/gnome/druid-acct-period.c.orig 2006-03-06 03:03:15.000000000 +0100
++++ src/gnome/druid-acct-period.c
+@@ -334,7 +334,7 @@ ap_show_menu (GnomeDruidPage *druidpage,
+ * we may have closed books since last time. */
+ info->earliest = get_earliest_in_book (gnc_get_current_book());
+ info->earliest_str = qof_print_date(info->earliest);
+- PINFO ("date of earliest is %ld %s", info->earliest, ctime (&info->earliest));
++ PINFO ("date of earliest is %ld %s", (long)info->earliest, ctime (&info->earliest));
+
+ prepare_remarks (info);
+ }
+@@ -528,7 +528,7 @@ ap_druid_create (AcctPeriodInfo *info)
+ info->earliest = get_earliest_in_book (gnc_get_current_book());
+ info->earliest_str = qof_print_date(info->earliest);
+ PINFO ("date of earliest transaction is %ld %s",
+- info->earliest, ctime (&info->earliest));
++ (long)info->earliest, ctime (&info->earliest));
+
+ g_date_clear (&info->closing_date, 1);
+ g_date_set_time_t (&info->closing_date, info->earliest);
Home |
Main Index |
Thread Index |
Old Index