summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch')
-rw-r--r--sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch b/sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch
index dbb95da2a..d633dff3d 100644
--- a/sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch
+++ b/sci-mathematics/dataplot/files/dpsrc-patchset-20080225.patch
@@ -67,3 +67,45 @@ diff -Naur dpsrc-orig/x11_src.c dpsrc/x11_src.c
int WIDTH_CURRENT; /* current line width */
int LINE_STYLE_CURRENT; /* current line style */
int CAP_STYLE_CURRENT; /* current cap style */
+--- dpsrc-orig/gs_src.c 2002-02-20 13:28:36.000000000 -0500
++++ dpsrc/gs_src.c 2008-04-28 08:54:28.000000000 -0400
+@@ -111,9 +111,9 @@
+ int max_colors; /* maximum colors actually allocated */
+ int CURRENT_COLOR; /* Define current color */
+ int CURRENT_LINE_STYLE[12]; /* Define current line style */
+-int NPTS_STYLE = 0; /* Number of points in style */
++static int NPTS_STYLE = 0; /* Number of points in style */
+ int color_table[MAX_COLORS + 100]; /* color table */
+-int red[MAX_COLORS] = {
++static int red[MAX_COLORS] = {
+ /* 0 - 7 */ 255, 0, 255, 0, 0, 255, 255, 0,
+ /* 8 - 15 */ 255, 154, 0, 173, 138, 208, 47, 211,
+ /* 16 - 23 */ 127, 165, 95, 255, 100, 85, 153, 72,
+@@ -127,7 +127,7 @@
+ /* 80 - 87 */ 238, 205, 139, 238, 205, 139, 238, 205,
+ /* 88 - 88 */ 139
+ };
+-int green[MAX_COLORS] = {
++static int green[MAX_COLORS] = {
+ /* 0 - 7 */ 255, 0, 0, 0, 255, 0, 165, 255,
+ /* 8 - 15 */ 255, 205, 100, 216, 43, 32, 79, 211,
+ /* 16 - 23 */ 255, 42, 158, 127, 149, 107, 50, 61,
+@@ -141,7 +141,7 @@
+ /* 80 - 87 */ 154, 133, 90, 0, 0, 0, 0, 0,
+ /* 88 - 88 */ 0
+ };
+-int blue[MAX_COLORS] = {
++static int blue[MAX_COLORS] = {
+ /* 0 - 7 */ 255, 0, 0, 255, 0, 255, 0, 255,
+ /* 8 - 15 */ 0, 50, 0, 230, 226, 144, 79, 211,
+ /* 16 - 23 */ 212, 42, 160, 80, 237, 47, 204, 139,
+@@ -158,7 +158,7 @@
+
+ /* flags for current attribute settings */
+ static int OPEN_FLAG = 0; /* 0 - GS closed, 1 - GS open */
+-int DEVICE_TYPE = 0; /* define device */
++static int DEVICE_TYPE = 0; /* define device */
+ /* 1 - jpeg */
+ /* 2 - png */
+ /* 3 - windows bmp */
+