summaryrefslogtreecommitdiff
blob: dbb95da2aa30f383137b0d6927ee3c00e26928c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
diff -Naur dpsrc-orig/gl_src.c dpsrc/gl_src.c
--- dpsrc-orig/gl_src.c	2001-02-28 16:45:56.000000000 -0500
+++ dpsrc/gl_src.c	2008-04-10 17:03:03.000000000 -0400
@@ -154,7 +154,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <math.h>
-#include <strings.h>
+#include <string.h>
 
 #if UNIX == 0
 #include <X11/Xlib.h>
@@ -257,7 +257,7 @@
 /* flags for current attribute settings */
 static int    OPEN_FLAG = 0;      /* 0 - X11 closed, 1 - X11 open */
 static int    OPEN_FLAG_2 = 0;    /* 0 - repeat graph window closed, 1 - open */
-int           GRAPH_FLAG = 0;     /* 0 - gleras has not been called, 1 - gleras has been called  */
+static int           GRAPH_FLAG = 0;     /* 0 - gleras has not been called, 1 - gleras has been called  */
 int           WIDTH_CURRENT;      /* current line width */
 int           LINE_STYLE_CURRENT; /* current line style */
 char          FONT_NAME_CURRENT[80];  /* name of current font */
@@ -922,7 +922,7 @@
    glNewList(list_id, GL_COMPILE_AND_EXECUTE);
 
    glClearColor(red_temp,green_temp,blue_temp,1.0);
-   glclear(GL_COLOR_BUFFER_BIT);
+   glClear(GL_COLOR_BUFFER_BIT);
 
    GRAPH_FLAG = 1;
 }
@@ -1486,7 +1486,7 @@
  *           Color only set if being changed.
  */
 #if APPEND_UNDERSCORE == 1 && SUBROUTINE_CASE == 1
-void glseco(jcol, red, green, blue)
+void glseco_(jcol, red, green, blue)
 #elif APPEND_UNDERSCORE == 1 && SUBROUTINE_CASE == 0
 void GLSECO_(jcol, red, green, blue)
 #elif APPEND_UNDERSCORE == 0 && SUBROUTINE_CASE == 1
@@ -1691,7 +1691,7 @@
    width = isize[0];
 #endif
    if (width < 1.0) width = 1.0;
-   glPointsize(width);
+   glPointSize(width);
    glBegin(GL_POINTS);
 #if PRECISION == 0
    glVertex2f(*ix, *iy);
diff -Naur dpsrc-orig/x11_src.c dpsrc/x11_src.c
--- dpsrc-orig/x11_src.c	2007-08-23 13:57:06.000000000 -0400
+++ dpsrc/x11_src.c	2008-04-10 17:02:18.000000000 -0400
@@ -214,7 +214,7 @@
 /* add following 2 lines MAY 1995   */
 #include <stdlib.h>
 #include <math.h>
-#include <strings.h>
+#include <string.h>
 
 /* global definitions */
 
@@ -507,7 +507,7 @@
 /* flags for current attribute settings */
 static int    OPEN_FLAG = 0;          /* 0 - X11 closed, 1 - X11 open */
 static int    OPEN_FLAG_2 = 0;        /* 0 - repeat graph window closed, 1 - open */
-int           GRAPH_FLAG = 0;         /* 0 - xerase has not been called, 1 - xerase has been called  */
+static int           GRAPH_FLAG = 0;         /* 0 - xerase has not been called, 1 - xerase has been called  */
 int           WIDTH_CURRENT;          /* current line width */
 int           LINE_STYLE_CURRENT;     /* current line style */
 int           CAP_STYLE_CURRENT;      /* current cap style */