刚安装El Capitan,不能安装gem eventmachine 1.0.7。Openssl的版本是1.0.2a-1。尝试使用——with-ssl-dir,但似乎被忽略了。

报告到他们的github回购以及。

任何建议都非常感谢。谢谢。

$ ls /usr/local/Cellar/openssl/1.0.2a-1/include/openssl/ssl.h
/usr/local/Cellar/openssl/1.0.2a-1/include/openssl/ssl.h

$ gem install eventmachine -v '1.0.7' -- --with-ssl-dir=/usr/local/Cellar/openssl/1.0.2a-1/include
/Users/pain/.rbenv/versions/2.1.2/bin/ruby -r ./siteconf20150612-56154-1hsjz2n.rb extconf.rb --with-ssl-dir=/usr/local/Cellar/openssl/1.0.2a-1/include
checking for rb_trap_immediate in ruby.h,rubysig.h... no
checking for rb_thread_blocking_region()... yes
checking for ruby/thread.h... yes
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes
checking for inotify_init() in sys/inotify.h... no
checking for __NR_inotify_init in sys/syscall.h... no
checking for writev() in sys/uio.h... yes
checking for rb_thread_fd_select()... yes
checking for rb_fdset_t in ruby/intern.h... yes
checking for rb_wait_for_single_fd()... yes
checking for rb_enable_interrupt()... no
checking for rb_time_new()... yes
checking for sys/event.h... yes
checking for sys/queue... yes
checking for clock_gettime()... no
checking for gethrtime()... no
creating Makefile

make "DESTDIR=" clean

make "DESTDIR="
compiling binder.cpp
In file included from binder.cpp:20:
./project.h:116:10: fatal error: 'openssl/ssl.h' file not found
#include <openssl/ssl.h>
         ^
1 error generated.
make: *** [binder.o] Error 1

make failed, exit code 2

当前回答

另一种选择是为你的整个用户配置文件添加一个捆绑器配置项,就像这样:

cd ~
bundle config build.eventmachine --with-cppflags=-I$(brew --prefix openssl)/include

它会在你的主目录中创建一个.bundle/config文件,当你运行bundle install时,它会被用在你的所有项目中。

其他回答

brew link --force openssl

然后:

gem install eventmachine

它还修复:

Gem安装开销 包安装 Rake和rails任务

注:你可能需要再次删除并运行brew install openssl

这个问题是因为苹果已经从OSX中删除了openssl(在El Captain版本中)

这为我解决了问题:

PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig" gem install eventmachine -v "1.0.8"

来源:https://github.com/sj26/mailcatcher/issues/254

在openssl@3和Homebrew中,它通过运行以下命令工作:

gem install eventmachine -- --with-openssl-dir=/usr/local/opt/openssl@3/bin/openssl

注意:最后的/bin/openssl对我来说是不同的。

gem pristine eventmachine -- --with-cppflags=-I/usr/local/opt/openssl/include

质朴删除旧的宝石并重新编译它。

cpp flags选项允许编译器找到openssl头文件。

如果你喜欢抽象cpp标志参数,你可以这样做:

PKG_CONFIG_PATH="$(brew --prefix openssl)/lib/pkgconfig"

你也可以添加版本,如果你喜欢:

gem pristine eventmachine -v '1.0.4' -- --with-cppflags=-I/usr/local/opt/openssl/include

这为我安装了它:

gem install eventmachine -- --with-openssl-dir=/usr/local/opt/openssl@1.1

我从Github的eventmachine上买的。显然,OpenSSL工具在某个时候从MacOS中移动/删除了。

在我的例子中,我想安装其他依赖于eventmachine的东西(mailcatcher)。我通过在上面的命令中用mailcatcher替换eventmachine来做到这一点。