removido
(usa Nenhuma)
Enviado em 11/02/2010 - 10:13h
Eu to aprendendo a fazer programas usando o GTK agora. Eu peguei o programa pronto do tutorial do gtk e deu erros que eu não entendi com proceder para elimina-los.
O programa é o seguinte:
#include <gtk/gtk.h>
int main( int argc,
char *argv[] )
{
GtkWidget *window;
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_show (window);
gtk_main ();
return 0;
}
E para compilar usa-se: gcc base.c -o base `pkg-config --cflags --libs gtk+-2.0`
Aqui deu os seguintes erros:
Package gtk+-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk+-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk+-2.0' found
base.c:1:21: error: gtk/gtk.h: Arquivo ou diretório não encontrado
base.c: In function ‘main’:
base.c:5: error: ‘GtkWidget’ undeclared (first use in this function)
base.c:5: error: (Each undeclared identifier is reported only once
base.c:5: error: for each function it appears in.)
base.c:5: error: ‘window’ undeclared (first use in this function)
base.c:9: error: ‘GTK_WINDOW_TOPLEVEL’ undeclared (first use in this function)
Estou usando ubuntu 9.10
Alguem sabe o que eu tenho que instalar para resolver esses erros?