summaryrefslogtreecommitdiff
path: root/finance
diff options
context:
space:
mode:
authorwiz <wiz>2006-03-14 23:36:11 +0000
committerwiz <wiz>2006-03-14 23:36:11 +0000
commit9a55011f4c176236908065949be72eb99ffe221c (patch)
tree2a60f83062772994f40d8e2838a3125934080ad0 /finance
parent248e2d0564c22be8e0d9c0783c2c01c166d47616 (diff)
downloadpkgsrc-9a55011f4c176236908065949be72eb99ffe221c.tar.gz
Add patch that should fix build on amd64.
Diffstat (limited to 'finance')
-rw-r--r--finance/gnucash-devel/distinfo3
-rw-r--r--finance/gnucash-devel/patches/patch-ad22
2 files changed, 24 insertions, 1 deletions
diff --git a/finance/gnucash-devel/distinfo b/finance/gnucash-devel/distinfo
index 738c12992ba..3442360fac8 100644
--- a/finance/gnucash-devel/distinfo
+++ b/finance/gnucash-devel/distinfo
@@ -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 @@ Size (gnucash-1.9.2.tar.gz) = 10006488 bytes
SHA1 (patch-aa) = db08a08fe8181822c1038d0adb3174dc2ebbcc12
SHA1 (patch-ab) = c4a8f0bf0276424d5d7fc77b99d2757a9f1d56c0
SHA1 (patch-ac) = e151916a2434a709c32c6a7169ddc287a0d5d229
+SHA1 (patch-ad) = a28ccd08bb8c4a654bb5bdf619888925c854d53f
diff --git a/finance/gnucash-devel/patches/patch-ad b/finance/gnucash-devel/patches/patch-ad
new file mode 100644
index 00000000000..519af6a259b
--- /dev/null
+++ b/finance/gnucash-devel/patches/patch-ad
@@ -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);