diff options
Diffstat (limited to 'misc/goffice0.2/patches')
-rw-r--r-- | misc/goffice0.2/patches/patch-aa | 16 | ||||
-rw-r--r-- | misc/goffice0.2/patches/patch-ab | 27 | ||||
-rw-r--r-- | misc/goffice0.2/patches/patch-ac | 15 | ||||
-rw-r--r-- | misc/goffice0.2/patches/patch-ad | 15 | ||||
-rw-r--r-- | misc/goffice0.2/patches/patch-ae | 19 |
5 files changed, 0 insertions, 92 deletions
diff --git a/misc/goffice0.2/patches/patch-aa b/misc/goffice0.2/patches/patch-aa deleted file mode 100644 index b7fc6141596..00000000000 --- a/misc/goffice0.2/patches/patch-aa +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2008/01/15 10:54:25 rillig Exp $ - -sunpro doesn't like empty structs, and the name doesn't seem to be used -by anyone. - ---- goffice/app/go-doc-control-impl.h.orig 2005-08-08 10:56:57.000000000 +0200 -+++ goffice/app/go-doc-control-impl.h 2007-11-20 15:20:26.330848000 +0100 -@@ -28,8 +28,6 @@ G_BEGIN_DECLS - struct _GODocControl { - GObject base; - -- struct { -- } state[GO_DOC_CONTROL_STATE_MAX]; - }; - - typedef struct { diff --git a/misc/goffice0.2/patches/patch-ab b/misc/goffice0.2/patches/patch-ab deleted file mode 100644 index 7bf34562d9a..00000000000 --- a/misc/goffice0.2/patches/patch-ab +++ /dev/null @@ -1,27 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2008/01/15 10:54:26 rillig Exp $ - -sunpro says: void functions cannot return a value. - ---- goffice/graph/gog-axis.c.orig 2005-10-05 12:00:23.000000000 +0200 -+++ goffice/graph/gog-axis.c 2007-11-20 15:24:51.231826000 +0100 -@@ -873,9 +873,9 @@ void - gog_axis_map_get_extents (GogAxisMap *map, double *start, double *stop) - { - if (map->axis->inverted) -- return map->desc->map_bounds (map, stop, start); -+ map->desc->map_bounds (map, stop, start); - else -- return map->desc->map_bounds (map, start, stop); -+ map->desc->map_bounds (map, start, stop); - } - - /** -@@ -894,7 +894,7 @@ gog_axis_map_get_extents (GogAxisMap *ma - void - gog_axis_map_get_bounds (GogAxisMap *map, double *minimum, double *maximum) - { -- return map->desc->map_bounds (map, minimum, maximum); -+ map->desc->map_bounds (map, minimum, maximum); - } - /** - * gog_axis_map_free : diff --git a/misc/goffice0.2/patches/patch-ac b/misc/goffice0.2/patches/patch-ac deleted file mode 100644 index 9158ce71b42..00000000000 --- a/misc/goffice0.2/patches/patch-ac +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2008/01/15 10:54:26 rillig Exp $ - -sunpro says: void functions cannot return a value. - ---- goffice/graph/gog-chart.c.orig 2005-10-30 15:35:37.000000000 +0100 -+++ goffice/graph/gog-chart.c 2007-11-20 15:22:57.563151000 +0100 -@@ -295,7 +295,7 @@ gog_chart_map_new (GogChart *chart, GogV - void - gog_chart_map_2D_to_view (GogChartMap *map, double x, double y, double *u, double *v) - { -- return (map->map_2D_to_view) (map, x, y, u, v); -+ (map->map_2D_to_view) (map, x, y, u, v); - } - - GogAxisMap * diff --git a/misc/goffice0.2/patches/patch-ad b/misc/goffice0.2/patches/patch-ad deleted file mode 100644 index 3935678deb3..00000000000 --- a/misc/goffice0.2/patches/patch-ad +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-ad,v 1.1 2008/01/15 10:54:26 rillig Exp $ - -sunpro says: void functions cannot return a value. - ---- goffice/graph/gog-data-set.c.orig 2006-03-23 05:28:41.000000000 +0100 -+++ goffice/graph/gog-data-set.c 2007-11-20 15:26:28.173752000 +0100 -@@ -61,7 +61,7 @@ gog_dataset_dims (GogDataset const *set, - g_return_if_fail (klass != NULL); - g_return_if_fail (first != NULL); - g_return_if_fail (last != NULL); -- return (klass->dims) (set, first, last); -+ (klass->dims) (set, first, last); - } - - /** diff --git a/misc/goffice0.2/patches/patch-ae b/misc/goffice0.2/patches/patch-ae deleted file mode 100644 index 216eb64a8d6..00000000000 --- a/misc/goffice0.2/patches/patch-ae +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2008/01/15 10:54:26 rillig Exp $ - -sunpro says: void functions cannot return a value. - ---- goffice/graph/gog-object.c.orig 2005-10-17 14:59:21.000000000 +0200 -+++ goffice/graph/gog-object.c 2007-11-20 15:21:10.637817000 +0100 -@@ -787,8 +787,10 @@ gog_object_set_id (GogObject *obj, unsig - - g_return_if_fail (GOG_OBJECT (obj) != NULL); - -- if (id == 0) -- return gog_object_generate_id (obj); -+ if (id == 0) { -+ gog_object_generate_id (obj); -+ return; -+ } - - g_return_if_fail (GOG_OBJECT (obj)->parent != NULL); - |