# # # ogle_gui needs gtk+ dev kit # # # cd /usr/local/src/ogle_gui-0.9.2 # ./configure # # # checking for GTK - version >= 0.99.7... no # *** The gtk-config script installed by GTK could not be found # *** If GTK was installed in PREFIX, make sure PREFIX/bin is in # *** your path, or set the GTK_CONFIG environment variable to the # *** full path to gtk-config. # configure: error: You must have gtk+ development files # # # http://mail.gnome.org/archives/gtk-list/2002-August/msg00202.html # # gtk-config is not used any longer. Instead the more general pkg-config # is used. According to your mail you installed it already. There's a # pkg-config man-page and the GTK+ API reference explains its use with # respect to GTK+-2.0: # # http://developer.gnome.org/doc/API/2.0/gtk/gtk-compiling.html # # http://developer.gnome.org/doc/GGAD/cha-gtk.html # - hello world demo # # http://www.linux-mag.com/1999-07/compile_03.html # - more howto # # http://www.lugod.org/presentations/gtk/compile.html # gcc -Wall -g -o sample sample.c `gtk-config --cflags` `gtk-config --libs` # # ------------------------------------------------------------------------- # locate gtk-config # if /usr/local/bin/gtk-config # either add that to you PATH environment variable setenv PATH $PATH:/usr/local/bin # - or - setenv GTK_CONFIG /usr/local/bin # if /usr/bin/gtk-config export GTK_CONFIG=/usr/bin/gtk-config # # Suse-90:~# rpm -qa | grep -i gtk | sort gtk-1.2.10-710 gtk2-2.2.3-27 gtk2-devel-2.2.3-27 gtk2-doc-2.2.3-27 gtk2-engines-2.2.0-220 gtk2-themes-0.1-494 gtkam-0.1.11dev1-82 gtkdoc-1.1-71 gtkglarea-1.2.2-715 gtkhtml2-3.0.8-60 gtkhtml2-devel-3.0.8-60 gtklp-0.9p-30 gtkmm-1.2.10-143 libexif-gtk-0.3.3-172 libgtkhtml-2.2.4-110 libgtkhtml-devel-2.2.4-110 wxGTK-2.4.1.2-43 # # # End of file