From: Jason Roelofs Date: 2007-02-27T04:27:58+09:00 Subject: Re: Installing Ruby, Sqlite3, Sqlite3-Ruby on Cygwin ------=_Part_52564_9398097.1172518067747 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Looks good. A note for those new to Cygwin: The Ruby from setup.exe is broken, horribly broken. Build from source as outlined above or (better IMO) use the OneClick Ruby Installer and install to Windows itself, updating your PATH to include C:\ruby\bin (default path). Jason On 2/26/07, Ruby Admirer wrote: > > 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. ------=_Part_52564_9398097.1172518067747--