When trying to install Curb(0.7.15) with native extensions I got this message:
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/home/daniel/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb
checking for curl-config... no
checking for main() in -lcurl... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/daniel/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
--with-curl-dir
--without-curl-dir
--with-curl-include
--without-curl-include=${curl-dir}/include
--with-curl-lib
--without-curl-lib=${curl-dir}/lib
--with-curllib
--without-curllib
extconf.rb:23:in `<main>': Can't find libcurl or curl/curl.h (RuntimeError)
Try passing --with-curl-dir or --with-curl-lib and --with-curl-include
options to extconf.
Gem files will remain installed in /home/daniel/.rvm/gems/ruby-1.9.3-p194/gems/curb-0.7.15 for inspection.
Results logged to /home/daniel/.rvm/gems/ruby-1.9.3-p194/gems/curb-0.7.15/ext/gem_make.out
An error occurred while installing curb (0.7.15), and Bundler cannot continue.
Make sure that `gem install curb -v '0.7.15'` succeeds before bundling.
As suggested, I tried to install curb but no success!
The solution?
Install this: libcurl4-gnutls-dev and guess what, problem SOLVED!
On Fedora you do:
$ yum install libcurl -devel.(64 or 32 bit version)
Adios!
Woot! Saved my day. Thanks!
ReplyDeleteLEGEND! Thanks very much indeed!
ReplyDeleteHey, that's awesome, I'm really glad it helped :)
Delete