diff options
Diffstat (limited to 'math/guppi/patches')
-rw-r--r-- | math/guppi/patches/patch-aa | 18 | ||||
-rw-r--r-- | math/guppi/patches/patch-ab | 13 | ||||
-rw-r--r-- | math/guppi/patches/patch-ac | 106 | ||||
-rw-r--r-- | math/guppi/patches/patch-ad | 12 | ||||
-rw-r--r-- | math/guppi/patches/patch-ae | 12 | ||||
-rw-r--r-- | math/guppi/patches/patch-af | 12 | ||||
-rw-r--r-- | math/guppi/patches/patch-ag | 37 | ||||
-rw-r--r-- | math/guppi/patches/patch-ah | 12 | ||||
-rw-r--r-- | math/guppi/patches/patch-ai | 13 | ||||
-rw-r--r-- | math/guppi/patches/patch-aj | 20 | ||||
-rw-r--r-- | math/guppi/patches/patch-ak | 21 | ||||
-rw-r--r-- | math/guppi/patches/patch-al | 17 | ||||
-rw-r--r-- | math/guppi/patches/patch-am | 18 |
13 files changed, 0 insertions, 311 deletions
diff --git a/math/guppi/patches/patch-aa b/math/guppi/patches/patch-aa deleted file mode 100644 index 6329d2bd37a..00000000000 --- a/math/guppi/patches/patch-aa +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aa,v 1.6 2003/11/19 00:00:01 sommerfeld Exp $ - ---- src/libguppispecfns/const.c.orig 2001-05-05 14:16:23.000000000 -0400 -+++ src/libguppispecfns/const.c -@@ -93,11 +93,13 @@ double LOGE2 = 6.93147180559945309417E-1 - double LOGSQ2 = 3.46573590279972654709E-1; /* log(2)/2 */ - double THPIO4 = 2.35619449019234492885; /* 3*pi/4 */ - double TWOOPI = 6.36619772367581343075535E-1; /* 2/pi */ -+#ifndef INFINITY - #ifdef INFINITIES - double INFINITY = 1.0 / 0.0; /* 99e999; */ - #else - double INFINITY = 1.79769313486231570815E308; /* 2**1024*(1-MACHEP) */ - #endif -+#endif - - #ifdef MINUSZERO - double NEGZERO = -0.0; diff --git a/math/guppi/patches/patch-ab b/math/guppi/patches/patch-ab deleted file mode 100644 index 096a369e5d3..00000000000 --- a/math/guppi/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.3 2005/04/27 15:03:31 wiz Exp $ - ---- libguppi.m4.orig 2000-06-01 15:54:33.000000000 +0200 -+++ libguppi.m4 -@@ -8,7 +8,7 @@ - dnl AM_PATH_LIBGUPPI([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) - dnl Test for LIBGUPPI, and define LIBGUPPI_CFLAGS and LIBGUPPI_LIBS - dnl --AC_DEFUN(AM_PATH_LIBGUPPI, -+AC_DEFUN([AM_PATH_LIBGUPPI], - [dnl - dnl Get the cflags and libraries from the gnome-config script - dnl diff --git a/math/guppi/patches/patch-ac b/math/guppi/patches/patch-ac deleted file mode 100644 index 31c8cbed3b1..00000000000 --- a/math/guppi/patches/patch-ac +++ /dev/null @@ -1,106 +0,0 @@ -$NetBSD: patch-ac,v 1.4 2005/12/06 16:12:43 joerg Exp $ - ---- libguppitank/guppi-object-barchart.c 2003-05-30 21:21:16.000000000 +0200 -+++ libguppitank/guppi-object-barchart.c 2003-05-30 21:21:26.000000000 +0200 -@@ -410,6 +410,7 @@ update (GuppiObject *obj) - GuppiElementState *left_axis_state = NULL; - GuppiElementState *frame_state = NULL; - GuppiColorPalette *color_palette = NULL; -+ GuppiColorPalette *color_palette_legend = NULL; - GuppiDataTable *data_table; - GnomeFont *font; - -@@ -446,11 +447,13 @@ update (GuppiObject *obj) - /* FIXME: check for construction of legends. */ - - if (obar->legend_view && obar->col_labels) { -- add_col_labels (obar, data_table, obar->data_cols, obar->col_labels, FALSE); -+ add_col_labels (obar, data_table, obar->data_cols, obar->col_labels, -+ obar->legend_reversed); - } - - if (obar->col_colors) { - color_palette = build_bar_colors (obar, FALSE); -+ color_palette_legend = build_bar_colors (obar, obar->legend_reversed); - } - - guppi_element_state_set (barchart_state, -@@ -497,7 +500,7 @@ update (GuppiObject *obj) - - guppi_element_state_set (legend_state, - "labels", data_table, -- "swatch_colors", color_palette, -+ "swatch_colors", color_palette_legend, - "label_font", font, - NULL); - } -@@ -505,6 +508,8 @@ update (GuppiObject *obj) - - /* clean up */ - -+ guppi_unref (color_palette); -+ guppi_unref (color_palette_legend); - guppi_unref (barchart_state); - guppi_unref (legend_state); - guppi_unref (bottom_axis_state); -@@ -525,6 +530,7 @@ build (GuppiObject *obj, double hsize, d - - GuppiDataTable *data_table; - GuppiColorPalette *color_palette = NULL; -+ GuppiColorPalette *color_palette_legend = NULL; - - GuppiElementState *barchart_state; - GuppiElementState *legend_state = NULL; -@@ -560,7 +566,8 @@ build (GuppiObject *obj, double hsize, d - } - - if (obar->col_labels) { -- add_col_labels (obar, data_table, obar->data_cols, obar->col_labels, FALSE); -+ add_col_labels (obar, data_table, obar->data_cols, obar->col_labels, -+ obar->legend_reversed); - } - - -@@ -568,6 +575,7 @@ build (GuppiObject *obj, double hsize, d - - if (obar->col_colors) { - color_palette = build_bar_colors (obar, FALSE); -+ color_palette_legend = build_bar_colors (obar, obar->legend_reversed); - } - - barchart_state = guppi_element_state_new ("barchart", -@@ -620,7 +628,8 @@ build (GuppiObject *obj, double hsize, d - - legend_state = guppi_element_state_new ("legend", - "labels", data_table, -- "swatch_colors", color_palette, -+ "swatch_colors", -+ color_palette_legend, - "label_font", font, - NULL); - -@@ -669,6 +678,8 @@ build (GuppiObject *obj, double hsize, d - /* Clean up after ourselves... */ - - guppi_unref (data_table); -+ guppi_unref (color_palette); -+ guppi_unref (color_palette_legend); - - guppi_unref (barchart_state); - guppi_unref (bottom_axis_state); -@@ -701,6 +712,7 @@ clicked_bar_cb (GuppiCanvasItem *item, - break; - - default: -+ break; - } - } - -@@ -733,6 +745,7 @@ clicked_box_cb (GuppiCanvasItem *item, - break; - - default: -+ break; - } - } - diff --git a/math/guppi/patches/patch-ad b/math/guppi/patches/patch-ad deleted file mode 100644 index 7beb6184d4c..00000000000 --- a/math/guppi/patches/patch-ad +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ad,v 1.3 2005/12/06 16:12:43 joerg Exp $ - ---- src/libguppiplot/guppi-view-interval.c.orig 2005-12-06 14:49:37.000000000 +0000 -+++ src/libguppiplot/guppi-view-interval.c -@@ -227,6 +227,7 @@ gboolean guppi_view_interval_valid_fn (G - #endif - - default: -+ break; - } - - return TRUE; diff --git a/math/guppi/patches/patch-ae b/math/guppi/patches/patch-ae deleted file mode 100644 index 0cef176380c..00000000000 --- a/math/guppi/patches/patch-ae +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2005/12/06 16:12:43 joerg Exp $ - ---- src/libguppiplot/guppi-text-block.c.orig 2005-12-06 15:05:54.000000000 +0000 -+++ src/libguppiplot/guppi-text-block.c -@@ -900,6 +900,7 @@ guppi_text_block_foreach_word (GuppiText - - default: - /* Do nothing. */ -+ break; - } - - render_stack_evolve (stack, tt); diff --git a/math/guppi/patches/patch-af b/math/guppi/patches/patch-af deleted file mode 100644 index 155c5bbfbe4..00000000000 --- a/math/guppi/patches/patch-af +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-af,v 1.1 2005/12/06 16:12:43 joerg Exp $ - ---- src/libguppiplot/guppi-layout-constraint.c.orig 2005-12-06 15:10:05.000000000 +0000 -+++ src/libguppiplot/guppi-layout-constraint.c -@@ -165,6 +165,7 @@ guppi_layout_constraint_add_term (GuppiL - - default: - /* Fall through, do nothing. */ -+ break; - } - - ti = term_info_new (type, factor, geom); diff --git a/math/guppi/patches/patch-ag b/math/guppi/patches/patch-ag deleted file mode 100644 index a21efd83080..00000000000 --- a/math/guppi/patches/patch-ag +++ /dev/null @@ -1,37 +0,0 @@ -$NetBSD: patch-ag,v 1.2 2006/06/13 07:23:58 dbj Exp $ - ---- src/libguppiplot/guppi-root-group-item.c.orig 2002-01-08 01:31:08.000000000 -0500 -+++ src/libguppiplot/guppi-root-group-item.c -@@ -41,6 +41,8 @@ - - #include "guppi-root-group-tools.h" - -+static void canv_size_allocate (GtkWidget *, GtkAllocation *, gpointer); -+ - static GtkObjectClass *parent_class = NULL; - - static void -@@ -156,7 +158,6 @@ set_canvas_size (GuppiRootGroupItem *rg) - static void - changed_scale (GuppiCanvasItem *item, double scale) - { -- static void canv_size_allocate (GtkWidget *, GtkAllocation *, gpointer); - GuppiRootGroupItem *root_item = GUPPI_ROOT_GROUP_ITEM (item); - - if (GUPPI_CANVAS_ITEM_CLASS (parent_class)->changed_scale) -@@ -548,6 +549,7 @@ event (GnomeCanvasItem *gnoitem, GdkEven - return motion_notify_event (root, &(ev->motion)); - - default: -+ break; - } - - return FALSE; -@@ -777,6 +779,7 @@ canv_size_allocate (GtkWidget *widget, - case ROOT_GROUP_RESIZE_NONE: - default: - /* insure we do nothing */ -+ break; - } - - if (please_resize_canvas) diff --git a/math/guppi/patches/patch-ah b/math/guppi/patches/patch-ah deleted file mode 100644 index 1a9a45ca3e9..00000000000 --- a/math/guppi/patches/patch-ah +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ah,v 1.1 2005/12/06 16:12:43 joerg Exp $ - ---- src/demo.c.orig 2005-12-06 15:16:28.000000000 +0000 -+++ src/demo.c -@@ -451,6 +451,7 @@ compass_cb (gpointer closure) - compass_pos = GUPPI_NORTH; - break; - default: -+ break; - } - - guppi_element_state_set (state, diff --git a/math/guppi/patches/patch-ai b/math/guppi/patches/patch-ai deleted file mode 100644 index 80d1ae49c76..00000000000 --- a/math/guppi/patches/patch-ai +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ai,v 1.1 2006/06/13 07:23:58 dbj Exp $ - ---- src/libguppispecfns/mtherr.c.orig 2000-10-19 21:21:48.000000000 -0400 -+++ src/libguppispecfns/mtherr.c -@@ -58,7 +58,7 @@ Direct inquiries to 30 Frost Street, Cam - #include <glib.h> - #include "mconf.h" - --static int merror = 0; -+int merror = 0; - - /* Notice: the order of appearance of the following - * messages is bound to the error codes defined diff --git a/math/guppi/patches/patch-aj b/math/guppi/patches/patch-aj deleted file mode 100644 index c4235ff899a..00000000000 --- a/math/guppi/patches/patch-aj +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-aj,v 1.1 2006/06/13 07:23:58 dbj Exp $ - ---- src/libguppidata/guppi-data.c.orig 2001-11-19 00:40:40.000000000 -0500 -+++ src/libguppidata/guppi-data.c -@@ -58,6 +58,7 @@ - #include "guppi-data-transform.h" - #endif - -+static void build_menu (GuppiData *, GtkMenu *, gpointer); - - static GtkObjectClass *parent_class = NULL; - -@@ -1079,7 +1080,6 @@ validate_class (GuppiDataClass *klass) - static void - guppi_data_class_init (GuppiDataClass *klass) - { -- static void build_menu (GuppiData *, GtkMenu *, gpointer); - - GtkObjectClass *object_class = (GtkObjectClass *) klass; - diff --git a/math/guppi/patches/patch-ak b/math/guppi/patches/patch-ak deleted file mode 100644 index 3de410529ff..00000000000 --- a/math/guppi/patches/patch-ak +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ak,v 1.1 2006/06/13 07:23:58 dbj Exp $ - ---- src/libguppidata/guppi-seq-scalar.c.orig 2002-01-14 00:01:17.000000000 -0500 -+++ src/libguppidata/guppi-seq-scalar.c -@@ -65,6 +65,8 @@ struct _GuppiSeqScalarPrivate { - guint save_sum_abs : 1; - }; - -+static GtkWidget *info_display (GuppiData *); -+ - static GtkObjectClass *parent_class = NULL; - - static void -@@ -1775,7 +1777,6 @@ import_xml_element (GuppiSeq *seq, Guppi - static void - guppi_seq_scalar_class_init (GuppiSeqScalarClass *klass) - { -- static GtkWidget *info_display (GuppiData *); - - GtkObjectClass *object_class = (GtkObjectClass *) klass; - GuppiDataClass *data_class = GUPPI_DATA_CLASS (klass); diff --git a/math/guppi/patches/patch-al b/math/guppi/patches/patch-al deleted file mode 100644 index af7ece52d62..00000000000 --- a/math/guppi/patches/patch-al +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-al,v 1.1 2006/06/13 07:23:58 dbj Exp $ - ---- src/libguppiplot/guppi-axis-markers.c.orig 2002-01-20 22:19:05.000000000 -0500 -+++ src/libguppiplot/guppi-axis-markers.c -@@ -47,10 +47,11 @@ enum { - - static guint gam_signals[LAST_SIGNAL] = { 0 }; - -+static void clear (GuppiAxisMarkers *); -+ - static void - guppi_axis_markers_finalize (GtkObject * obj) - { -- static void clear (GuppiAxisMarkers *); - GuppiAxisMarkers *gal = GUPPI_AXIS_MARKERS (obj); - - guppi_finalized (obj); diff --git a/math/guppi/patches/patch-am b/math/guppi/patches/patch-am deleted file mode 100644 index 912d4d6b79f..00000000000 --- a/math/guppi/patches/patch-am +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-am,v 1.1 2006/06/27 14:54:55 wiz Exp $ - ---- src/libguppiuseful/guppi-plug-in.c.orig 2001-09-08 05:49:59.000000000 +0000 -+++ src/libguppiuseful/guppi-plug-in.c -@@ -44,10 +44,12 @@ static void - guppi_plug_in_finalize (GtkObject * obj) - { - GuppiPlugIn *pi = GUPPI_PLUG_IN (obj); -+ gpointer tmp; - - guppi_finalized (obj); - -- guppi_free0 ((gpointer)pi->load_path); -+ tmp = (gpointer)pi->load_path; -+ guppi_free0 (tmp); - - if (parent_class->finalize) - parent_class->finalize (obj); |