Linux オングストロームのプロジェクトで memcached gem を使用しようとしています。
Ruby プロジェクトで bundle install を実行しています。必要なすべての rubygem のダウンロードとインストールが開始されます。
宝石 'eventmachine' 宝石 'serialport' 宝石 'memcached' 宝石 'json' 宝石 'activerecord' 宝石 'sqlite3'
しかし、memcached をロードすると、次のエラーが表示されます。
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb
checking for sasl/sasl.h... no
Please install SASL to continue. The package is called libsasl2-dev on Ubuntu and cyrus-sasl on Gentoo.
*** 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
--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=/usr/local/bin/ruby
Gem files will remain installed in /usr/local/lib/ruby/gems/2.0.0/gems/memcached-1.7.0 for inspection.
Results logged to /usr/local/lib/ruby/gems/2.0.0/gems/memcached-1.7.0/ext/gem_make.out
ubuntuでは、次を使用して解決しました:apt-get install libsasl2ですが、オングストロームでは、opkgでlibsasl2を使用していません。実際、opkg install libsasl2は失敗します。
の解き方?ありがとう。