From: WATANABE Hirofumi Date: 2001-08-15T15:40:46+09:00 Subject: [ruby-talk:19759] Re: Compiling Ruby with cygwin and Tk support Hi, Manuel Zabelt writes: :> 2) Download and install X11 headers from cygwin port of XFree86: :> http://sources.redhat.com/cygwin/xfree/ :Sorry for asking that stupid, but I could not find it on my own: :where exactly can I find these headers? :(I don't want to get the complete X11 stuff if this is possible) Cygwin/XFree86 is very large. I'll show you another two way. 1) Download Tcl/Tk source package from your nearest Cygwin mirror site: http://cygwin.com/mirrors.html latest/tcltk/tcltk-20001125-1-src.tar.gz (5656102 bytes) Extract headers. $ tar xfvz tcltk-20001125-1-src.tar.gz tcltk-20001125-1/tk/xlib/X11 $ cp -av tcltk-20001125-1/tk/xlib/X11 /usr/include And run configure with --enable-shared (recommended). 2) Install Tcl/Tk 8.3.3 from http://www.scriptics.com/ to c:\Tcl. Run configure with these options. $ ./configure \ --enable-shared \ --with-tcl-dir=c:/Tcl \ --with-tcllib=tclstub83 \ --with-tklib=tkstub83 \ --with-tcltk_stubs Hope this helps, -- eban