libGL dependancy in Ubuntu 10.10

Asked by ToWeR

Hi
trying to compile glmark2 11.07 on Ubuntu 10.10, using $ ./waf configure --enable-gl; reads "Checking for gl : not found". Whats the ubuntu dependancy? libGL does not exist. thanks

Question information

Language:
English Edit question
Status:
Solved
For:
glmark2 Edit question
Assignee:
No assignee Edit question
Solved by:
Alexandros Frantzis
Solved:
Last query:
Last reply:
Revision history for this message
Best Alexandros Frantzis (afrantzis) said :
#1

Here are the build dependencies for glmark2:
python (>= 2.4)
libx11-dev
libpng12-dev

and for GL:
libgl1-mesa-dev | libgl1-dev,

or for GLES2:
libegl1-mesa-dev | libegl1-dev,
libgles2-mesa-dev | libgles2-dev

In your case you probably need to install libgl1-mesa-dev

Revision history for this message
ToWeR (autobot) said :
#2

Thanks Alexandros Frantzis, that solved my question.