Problemy z kompilacją w GPS (Ada IDE) z glib.h

Mam pewne kłopoty, kiedy próbuję skompilować kod Ada w GPS. GPS mówi, że brakuje go, gdy dołączę go do paczki. Próbowałem zainstalować za pomocą apt-get i tak się dzieje, ale błąd nadal istnieje. Co mogę zrobić dalej? Używam GPS na Ubuntu 12.04 x64.

Oto komunikat o błędzie, który otrzymałem:

gprbuild -d -P/media/LUISMUNYOZ/QUINTO/str/pendulum/pendulum_portatil/pendulum.gpr
 -XEXTRA=True -XOPENGL=True -XGNOME=True -XBUILD=Production
 print_barrier_sync.adb contrib.gpr:1:09: warning: no compiler specified for language "Xml",
 ignoring all its sources x86_64-pc-linux-gnu-gcc -c lw.c In file included from
 /media/LUISMUNYOZ/QUINTO/str/pendulum/pendulum_portatil/gtkada/testgtk/opengl/lw.c:20:0:
 /media/LUISMUNYOZ/QUINTO/str/pendulum/pendulum_portatil/gtkada/testgtk/opengl/lw.h:23:18:
 fatal error: glib.h: No such file or directory compilation terminated.
 gprbuild:* compilation phase failed

[2012-11-21 13:24:47] process exited with status 4 (elapsed time: 02.06s) [2012-11-21 13:24:56]
    Could not locate executable on path: svn SVN error:
[…]

Błąd uruchamia się w tym momencie:

#ifndef LW_H
#define LW_H

#include <glib.h>           <------------------------------------------
#include <GL/gl.h>

#define LW_MAX_POINTS   200
#define LW_MAX_NAME_LEN 500

Plik to lw.h, który jest zdefiniowany w pakiecie GtkAda. Pobrałem go ze strony GPS.

questionAnswers(2)

yourAnswerToTheQuestion