On 14 Jun 2001 11:54:07 +0900, 김용일(yong il.kim) wrote:
> please help me!! I am beginner GTK+ programming. when i compiled sample 
>code(hello.c), there are error message
> 
> usr/include/glib.h:66:glibconfig.h not being able to find glibconfig.h
> 
when compiling, you must pass to gcc the output of:

glib-config --cflags

so:

gcc -o my_program `glib-config --cflags` my_program.c

cheers

--
Rodrigo Moya <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>
http://www.gnome-db.org/

_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to