Author: Byron
Date: 24-02-09 11:30
Being a noob myself, I can't say much, but you're using `gnome-config`, which is a program that cannot be found on your system. Have you tried `pkg-config` instead?
Try...
gcc myapp.c -o myapp `pkg-config --cflags --libs gnomeui`
Also, try and
#include <gtk/gtk.h>
in your program. You might need this for gtk stuff, which you obviously use.
|
|