On Sep 1, 3:23 pm, Juan Costa <[email protected]> wrote: > Hugo Roque wrote: > > check if exist the file zlib.dll in ruby's bin folder. > > > -- > > * > > Hugo Roque > > * > > > *Twitter**:*http://twitter.com/Hugolnx > > *Email:* [email protected] > > *Github:*http://github.com/HugoLnx > > *Celular:* 8641-1271 > > *Blog:*http://hugolnx.wordpress.com/ > > Hi Hugo, thanks for your answer, but I'm using Ubuntu, so I don't have > dll's.
That probably means you don't have the zlib package installed. Make sure you install the dev headers. Then go back to where you built Ruby, cd to ext/zlib, and run "ruby extconf.rb; make; sudo make install". If you're using the Debian package for Ruby, I think the zlib library was broken out into its own package that you'll need to install. Regards, Dan -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

