Re: [Plib-users] problem... glut fonts maybe?
Brought to you by:
sjbaker
From: Sebastian U. <ud...@ha...> - 2002-01-13 17:02:53
|
On Sun, 13 Jan 2002, _l...@li... (Lo'oRiS il Kabukimono) wrote: > Date: Sun, 13 Jan 2002 17:44:38 +0100 > To: ud...@ha... > From: _l...@li... (Lo'oRiS il Kabukimono) > CC: plib <pli...@li...> > Subject: Re: [Plib-users] problem... glut fonts maybe? > > > I guess the GLUT library is missing on your system. > > [looris@lano]$ rpm -qa|igrep glut > libMesaglut3-4.0-2mdk > libMesaglut3-devel-4.0-2mdk It might be helpful if you could redirect all warning messages to a file and upload it somewhere (I guess it will be *way* too big to be sent to this list). The library might reside in /usr/X11R6/lib which is considered to be wrong. In this case, make some symlinks or do, although this is inellegant: CC='gcc -I/usr/X11R6/include -L/usr/X11R6/lib' CXX='g++ -I/usr/X11R6/include -L/usr/X11R6/lib' ./configure An other option could be that the library is broken in some way (for example, accidently stripped). However, please do not make things worser by installing GLUT from a source tarball on a RPM-based system ! Usually, people end up with two GLUT installations where one is not known to the package manager. Afterwards, applications might compile since at least *one* GLUT library is at the right place, however, it's the worsest way to solve the problem. - Sebastian |