From: ts Date: 2001-10-12T23:36:50+09:00 Subject: [ruby-talk:22466] Re: Learn Ruby/Tk or Ruby/GTK? && Problems with these. >>>>> "d" == dAHen writes: d> checking for tk.h... no d> This is strange, because: d> # locate 'tcl.h' 'tk.h' d> /usr/include/expect_tcl.h d> /usr/include/itcl.h d> /usr/include/tcl.h d> /usr/include/itk.h d> /usr/include/tk.h ruby don't search the file tk.h, it try to preprocess (with cpp) this file pigeon% cat conftest.c #include pigeon% This mean that you must have on your system, all include files needed by tk.h. For example you need X11/Xlib.h Guy Decoux