Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Try asking this on unix.stackexchange.com, they might be able to help – Phil Jenkins Oct 11 '10 at 14:35
did you vote him down? – A2B Oct 13 '10 at 20:36

closed as off topic by genpfault, Nick Weaver, Jan Hančič, rds, Bohemian Jan 22 at 10:04

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

    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]

share|improve this answer
4  
Instead of libopenal0a, try libopenal1. – earthmeLon Sep 29 '12 at 14:56

Not the answer you're looking for? Browse other questions tagged or ask your own question.