On Tue, Mar 06, 2001 at 12:03:46AM +0000, Jerrud wrote: > I`m trying to compile this 3D animation program (Flow), and I keep > getting this error when I compile it: > > partDrawOGL.cpp:148: implicit declaration of function `int > glPointParameterfvEXT(...)' make[1]: *** [partDrawOGL.o] Error 1 > make[1]: Leaving directory `/usr/src/flow-0.5.2/src' make: *** [src] > Error 2 alpha:/usr/src/flow-0.5.2#
It probably means that: partDrawOGL.cpp either is not properly including whatever header defines glPointParameterfvEXT() or the include path to the proper header is wrong in the build line; or, that you don't have the header files installed in /usr/include/GL. I find that function in /usr/include/GL/gl.h and /usr/include/GL/gl_mangle.h -- Eric G. Miller <egm2@jps.net>