Re: [Plib-users] The problems with glut - part II
Brought to you by:
sjbaker
From: Sebastian U. <ud...@ha...> - 2002-01-14 18:03:11
|
On Mon, 14 Jan 2002, _l...@li... (Lo'oRiS il Kabukimono) wrote: > Date: Mon, 14 Jan 2002 16:11:05 +0100 > To: pli...@li... > From: _l...@li... (Lo'oRiS il Kabukimono) > Subject: Re: [Plib-users] The problems with glut - part II > > ooops! i forgot to attach the error message... > here it is (only 1.5kB...) Great. Look at what is done upon linking: c++ -o tux_aqfh [Source files] [PLIB libraries] -lGLU -lGL -L/usr/X11R6/lib -lSM -lICE -lpthread -lX11 -lXi -lXext -lXmu -lm The problem is that the GLUT library is not linked, although both the PUI part of PLIB and the game itself depend on it. I guess the configure script could not find the GLUT library. However, your GLUT header files seem to be fine since otherwise, you would have got *lots* of warning messages earlier upon *compilation* and not upon *linking*. Please read what I wrote in my other e-mail for more information. If you should still have problems afterwards, do: rm -fv config.cache /configure And send me the "config.log" file created by the script. - Sebastian |