Ensure the pkg-config knows about glib-2.0: run manually
'pkg-config glib-2.0 --cflags' - if it will fail add to
PKG_CONFIG_PATH path to "glib-2.0.pc" file.
You can find it by running 'find / -name 'glib-2.0.pc' -print'.
So you can do smth like this (bash):
1. PKG_CONFIG_PATH=$PKG_CONFIG_PATH:`find / -name 'glib-2.0.pc -print`
then echo the PKG_CONFIG_PATH (if you want):
2. echo $PKG_CONFIG_PATH
and save it where you like (in "~/.bashrc" for example):
3. echo PKG_CONFIG_PATH=$PKG_CONFIG_PATH >> ~/.bashrc
    echo export PKG_CONFIG_PATH >> ~/.bashrc

Olexiy


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

Reply via email to