Hebert Suarez Cahuana wrote:
hebert@ubuntu:~$ sudo apt-get install libgtk2.0-dev
[sudo] password for hebert:
Leyendo lista de paquetes... Hecho
Creando árbol de dependencias
Leyendo la información de estado... Hecho
libgtk2.0-dev ya está en su versión más reciente.
0 actualizados, 0 se instalarán, 0 para eliminar y 0 no actualizados.
That may be, but nonetheless it appears that GTK is not
(correctly) installed on your system. What do you see if you type
the following in a terminal window?
pkg-config --cflags gtk+-2.0
(This is asking the program "pkg-config" to query your
installation of GTK, and to output the "flags" that must be made
available when building a program such as gretl that uses GTK.
Based on your earlier report, it seems that pkg-config did not
find any such information.)
You might also try the command
pkg-config --modversion gtk+-2.0
(This reports the version of GTK that is installed.)
Allin Cottrell