我正在尝试将我的Rails应用程序部署到Heroku。
我正在使用Postgres,但是在我的database.yml中,我还添加了一个访问远程sql server的定义。
在我的Gemfile中:
gem 'tiny_tds', '0.5.1'
在模型中:
establish_connection :my_sqlserver
这在开发模式下运行良好,但是当我尝试部署到Heroku时,我发出了一条错误消息:
[...]
Installing tiny_tds (0.5.1) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
/usr/local/bin/ruby extconf.rb
checking for iconv_open() in iconv.h... yes
checking for sybfront.h... no
-----
freetds is missing.
-----
*** 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.
[...]
我找到了一个让它工作的教程,但这是一个有点复杂的解决方案: https://github.com/rails-sqlserver/tiny_tds/issues/74
任何让它运作的想法?
非常感谢...
答案 0 :(得分:4)
我有同样的问题。
尝试安装freetds-devel。 rpmforge yum repository包含了freetds-devel。