Part of the Khronos Group
OpenGL.org

The Industry's Foundation for High Performance Graphics

from games to virtual reality, mobile phones to supercomputers

Results 1 to 3 of 3

Thread: Problem Installing GLUT !

  1. #1
    Guest

    Problem Installing GLUT !

    I try to install GLUT in Linux, but i have this message errors ..

    gcc: ../../../../lib/libMesaGLU.so: No such file or directory
    gcc: ../../../../lib/libMesaGL.so: No such file or directory
    make[3]: *** [rtsmap] Error 1
    make[3]: Leaving directory `/src/glut-3.7/progs/spheremap/glsmap'
    make[2]: *** [all] Error 2
    make[2]: Leaving directory `/src/glut-3.7/progs/spheremap'
    make[1]: *** [all] Error 2
    make[1]: Leaving directory `/src/glut-3.7/progs'
    make: *** [all] Error 2

    Whitch its the problem.

  2. #2
    Junior Member Newbie
    Join Date
    Apr 2000
    Location
    FRANCE
    Posts
    22

    Re: Problem Installing GLUT !

    First check your Makefile to use absolute path instead of relative path:

    -L/usr/lib/ in the link section of the makefile instead of -L../../../../lib/

    because if you change your build dir, the path is wrong.

    Have you run ldconfig as root? check if there is /usr/X11R6/lib in /etc/ld.so.conf before.

  3. #3
    Junior Member Newbie
    Join Date
    Aug 2000
    Location
    France
    Posts
    2

    Re: Problem Installing GLUT !

    I have had the same pb !

    The best solution is to install the last version of Mesa (3.2.1) because it installs itself the glut library !

    Besides, you need Mesa to "make" GLUT (see your error messages).

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •