--0-578053557-11725102966991 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi, In case other people may need a native installation of Ruby, Sqlite3 and Sqlite3-Ruby on Cygwin, here is how I manage to install these stuffs successfully : # Cygwin requirements # Default + gcc + make # I use only the default location for installation (/usr/local). # You may need to provide options for other location. # Ruby : tar xvf ruby-1.8.5-p12.tar.gz cd ruby-1.8.5-p12 ./configure make make install # Rubygems : tar xvf rubygems-0.9.2.tgz cd rubygems-0.9.2 ruby setup.rb # Sqlite3 : tar xvf sqlite-3.3.13.tar.gz mkdir bld cd bld ../sqlite-3.3.13/configure --disable-tcl make make sqlite3.dll make install cp sqlite3.dll /usr/local/bin # Ruby-Sqlite3 (thanks to Jamis Buck for the help) gem install sqlite3-ruby-1.2.1.gem That's it. Chauk-Mean. --------------------------------- Bored stiff? Loosen up... Download and play hundreds of games for free on Yahoo! Games. --0-578053557-11725102966991--