View | Details | Raw Unified | Return to bug 126037
Collapse All | Expand All

(-)geomview/Makefile (-1 / +4 lines)
Lines 14-21 Link Here
14
MAINTAINER=	bms@FreeBSD.org
14
MAINTAINER=	bms@FreeBSD.org
15
COMMENT=	An interactive viewer for 3- and 4-D geometric objects
15
COMMENT=	An interactive viewer for 3- and 4-D geometric objects
16
16
17
NOT_FOR_ARCHS=	amd64
18
NOT_FOR_ARCHS_REASON=	'Signal 11, Segmentation fault'
19
17
USE_MOTIF=	yes
20
USE_MOTIF=	yes
18
USE_XORG=	glut
21
USE_GL=	glut
19
22
20
USE_AUTOTOOLS=	autoconf:213
23
USE_AUTOTOOLS=	autoconf:213
21
24
(-)geomview/files/patch-lisp.c (-2 / +49 lines)
Lines 1-5 Link Here
1
--- src/lib/oogl/lisp/lisp.c.orig	Fri Sep  1 15:38:16 2000
1
--- src/lib/oogl/lisp/lisp.c	2000/09/01 22:38:16	1.2
2
+++ src/lib/oogl/lisp/lisp.c	Mon Aug 12 17:02:09 2002
2
+++ src/lib/oogl/lisp/lisp.c	2006/06/26 15:41:16	1.4
3
@@ -1205,9 +1205,9 @@
4
 	} else if (argclass == LARRAY) {
5
 	  /* special case for this because it takes 3 args: the base type,
6
 	     the array itself, and a count */
7
-	    va_arg(a_list, LType *);
8
-	    va_arg(a_list, void *);
9
-	    va_arg(a_list, int *);
10
+	    (void)va_arg(a_list, LType *);
11
+	    (void)va_arg(a_list, void *);
12
+	    (void)va_arg(a_list, int *);
13
 
14
 	    ++argspecs;
15
 	    if (LakeMore(lake,c)) {
16
@@ -1230,11 +1230,11 @@
17
 	    moreargspecs = 0;
18
 	}
19
     } else if(argclass == LLAKE) {
20
-	va_arg(a_list, Lake **);
21
+	(void)va_arg(a_list, Lake **);
22
 	LListAppend(args, LTOOBJ(LLAKE)(&lake));
23
     } else {
24
       ++argspecs;
25
-      va_arg(a_list, void *);
26
+      (void)va_arg(a_list, void *);
27
       if (LakeMore(lake,c)) {
28
 	LObject *arg;
29
 
30
@@ -1359,8 +1359,8 @@
31
 	    args = args->cdr;
32
 	    hold = 0;
33
 	  } else {
34
-	    va_arg(a_list, void *);
35
-	    va_arg(a_list, void *);
36
+	    (void)va_arg(a_list, void *);
37
+	    (void)va_arg(a_list, void *);
38
 	  }
39
 	} else if(argtype == LREST) {
40
 	    LList **restp = va_arg(a_list, LList **);
41
@@ -1389,7 +1389,7 @@
42
 	args = args->cdr;
43
 	hold = 0;
44
       } else
45
-	va_arg(a_list, void *);
46
+	(void)va_arg(a_list, void *);
47
     }
48
   }
49
   if (argsrequired<0) argsrequired = argspecs;
3
@@ -2110,7 +2110,7 @@
50
@@ -2110,7 +2110,7 @@
4
     va_list *a_list;
51
     va_list *a_list;
5
     unsigned long *x;
52
     unsigned long *x;
(-)geomview/files/patch-streampool.h (-11 / +11 lines)
Lines 1-11 Link Here
1
--- src/lib/oogl/refcomm/streampool.h.orig	Mon Aug 12 17:15:10 2002
1
--- src/lib/oogl/refcomm/streampool.h	2006/07/14 17:47:21	1.4
2
+++ src/lib/oogl/refcomm/streampool.h	Mon Aug 12 17:15:15 2002
2
+++ src/lib/oogl/refcomm/streampool.h	2006/07/15 19:06:00	1.5
3
@@ -29,7 +29,7 @@
3
@@ -116,7 +116,7 @@
4
 #include "config.h"
4
 extern IOBFILE *PoolInputFile(Pool *);
5
 #endif
5
 extern FILE *PoolOutputFile(Pool *);
6
 
6
 extern void  PoolDoReread(Pool *);
7
-#ifdef AIX
7
-extern void PoolClose(register Pool *p);
8
+#if AIX
8
+extern void PoolClose(Pool *p);
9
 # include <sys/select.h>  /* RS-6000 needs this */
9
 extern int   PoolOType(Pool *, int otype);
10
 #endif
10
 extern void  PoolSetOType(Pool *, int otype);
11
 
11
 extern Pool *PoolByName(char *name);

Return to bug 126037