[Plib-users] problems with configure
Brought to you by:
sjbaker
From: <ph...@bo...> - 2000-07-29 16:00:24
|
configure does not seem to be picking up my installation of mesa. I have /usr/local/include/GL/gl.h, etc. I have /usr/local/lib/libGL.so I'm using g++ installed in /opt/sfw (solaris 8) But I tried both configure with no args, and configure --includedir=/usr/local/include --libdir=/usr/local/lib It still says checking for glNewList in -lGL... no checking for glNewList in -lMesaGL... no checking for gluLookAt in -lGLU... no checking for gluLookAt in -lMesaGLU... no But when I do it myself, I see it. zaphod$ nm /usr/local/lib/libGL.so | grep glNewList [2909] | 309496| 56|FUNC |GLOB |0 |9 |glNewList Similarly, the pui compilation is not seeing the include files: ../../src/fnt/fnt.h:11: GL/gl.h: No such file or directory ../../src/fnt/fnt.h:12: GL/glu.h: No such file or directory But they are in /usr/local/include! |