diff options
author | wiz <wiz@pkgsrc.org> | 2006-09-19 17:45:50 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-09-19 17:45:50 +0000 |
commit | c7dde6d0e917f4ed233c668dc1d2eab9c272d89c (patch) | |
tree | 10ab39ebae9ab5d11c8e75a10d32995018d09a28 /math/gnumeric/patches | |
parent | 48c9cfae10226b6a7451d69f5f8842f9f7512985 (diff) | |
download | pkgsrc-c7dde6d0e917f4ed233c668dc1d2eab9c272d89c.tar.gz |
Fix build with libgda-1.9.103, and depend on it. Bump PKGREVISION.
Patch from jsacco@garnome.
Diffstat (limited to 'math/gnumeric/patches')
-rw-r--r-- | math/gnumeric/patches/patch-ab | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/math/gnumeric/patches/patch-ab b/math/gnumeric/patches/patch-ab new file mode 100644 index 00000000000..4f8fcf05b13 --- /dev/null +++ b/math/gnumeric/patches/patch-ab @@ -0,0 +1,20 @@ +$NetBSD: patch-ab,v 1.12 2006/09/19 17:45:50 wiz Exp $ + +Patch from jsacco@garnome. + +--- plugins/gda/plugin-gda.c.orig 2005-08-09 11:49:36.000000000 +0000 ++++ plugins/gda/plugin-gda.c +@@ -62,11 +62,11 @@ display_recordset (GdaDataModel *recset, + for (row = 0; row < rowcount; row++) { + for (col = 0; col < fieldcount; col++) { + gchar *str; +- const GdaValue *value; ++ const GValue *value; + + value = gda_data_model_get_value_at (GDA_DATA_MODEL (recset), + col, row); +- str = gda_value_stringify ((GdaValue *) value); ++ str = gda_value_stringify (value); + value_array_set (array, + col, + row, |