-
The problem lies in setting DV3RAP=TRUE.
When TRUE, the command to compile exrap.c is:
gcc -c -DV3RAP exrap.c
when the command to compile exrap.c is suppose to be:
gcc -ansi -pedantic -Wall -ffloat-store -fsigned-char -O -DUNIX -DVARKON -I/usr/X11R6/include -c -o exrap.o exrap.c
with what ever DV3RAP is set to; otherwise, UNIX does not get set and the compiler cannot find GL.h.
2009-09-06 20:35:57 UTC by trog24
-
gcc -c -DV3RAP exrap.c
In file included from exrap.c:48:
../../DB/include/DB.h:253: error: syntax error before ‘GLfloat’
../../DB/include/DB.h:253: warning: no semicolon at end of struct or union
../../DB/include/DB.h:254: warning: data definition has no type or storage class
../../DB/include/DB.h:256: error: syntax error before ‘*’ token
../../DB/include/DB.h:256: warning: data...
2009-09-06 08:04:27 UTC by trog24
-
Hi,
I hope this is the right place (my apologizes otherwise).
I'm new to Varkon, & am enjoying using it very much. So firstly, thank you all for such a great piece of software.
I'm having a few troubles but the first is intersects. I'm working in 3D & trying to intersect lines with curves (later will be curves with curves). I'm using a kludge with the on() command at the moment but am...
2009-08-24 06:17:26 UTC by larfalitl
-
Sometimes the compiler emits; warning: ‘segtype’ may be used uninitialized in this function
Sometimes the compiler is wrong. Say the assignment and use of the variable are both
enclosed by the same condition.
Sometimes the initialization depends on user input. I've tried to mark those with XXX .(which means: Needs fixing).
Sometimes it depends on the correct setting of an integer...
2009-07-07 16:25:05 UTC by rewolff
-
need to add the following lines to extcp.c at line 51
#ifdef UNIX
/* __USE_GNU is so that in netdb.h hostent is defined the old way */
#define __USE_GNU
#include
#include .
2009-06-13 14:48:50 UTC by mejames7760