Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing OpenGL and OpenAL in Ubuntu [closed]

How can I install OpenGL (with GLUT) and OpenAL (with ALUT) in Ubuntu Lucid lynx? I tried installing Mesa 7.8.2 using configure and make (the method told in www.mesa3d.org), but it is not installing anything. X.org's X is installed in my system, but there is no /usr/X11R6 directory. Is that a problem?

like image 288
Kit Avatar asked Oct 11 '10 14:10

Kit


1 Answers

    sudo apt-get update
    OpenGL: sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
    OpenAL: sudo apt-get install libopenal0a libopenal-dev
    ALUT:   sudo apt-get install libalut0 libalut-dev

[ALUT may have broken packages but it works fine]

like image 192
Amir Zadeh Avatar answered Sep 30 '22 18:09

Amir Zadeh