|
Prev: Lost with OptionParser
Next: require system
From: Jason Bornhoft on 2 Jul 2008 22:00 I was trying to install Redmine on rails 2.0.2 (this is not a rails question) and I received the following error message: no such file to load -- openssl I went to /ruby-1.8.6/ext/openssl and typed make and received the following error message: make: Nothing to be done for `all'. My question is: How can I install or enable openssl for ruby 1.8.6 in order to complete my install for rails. Thank you! -- Posted via http://www.ruby-forum.com/.
From: Jason Bornhoft on 2 Jul 2008 22:34 additionally im not using an ubuntu/debian distro Jason Bornhoft wrote: > I was trying to install Redmine on rails 2.0.2 (this is not a rails > question) and I received the following error message: > > no such file to load -- openssl > > I went to /ruby-1.8.6/ext/openssl and typed make and received the > following error message: > > make: Nothing to be done for `all'. > > > My question is: How can I install or enable openssl for ruby 1.8.6 in > order to complete my install for rails. > > Thank you! -- Posted via http://www.ruby-forum.com/.
From: Howard Roberts on 2 Jul 2008 23:19 Jason Bornhoft wrote: > I went to /ruby-1.8.6/ext/openssl and typed make and received the > following error message: > > make: Nothing to be done for `all'. > > > My question is: How can I install or enable openssl for ruby 1.8.6 in > order to complete my install for rails. > > Thank you! Jason, I ran into the exact same issue recently. Make sure you have the Open SSL development libraries and header files somewhere in a standard location for compiling software, then try: make clean, configure, make, and make install. You didn't specify which OS you do have, so, YMMV :) HTH, Howard -- Posted via http://www.ruby-forum.com/.
From: Jason Bornhoft on 2 Jul 2008 23:51 Thank you. I'm using a non-debian linux... I installed openssl from scratch. Let me try what you've suggested. Howard Roberts wrote: > Jason Bornhoft wrote: > >> I went to /ruby-1.8.6/ext/openssl and typed make and received the >> following error message: >> >> make: Nothing to be done for `all'. >> >> >> My question is: How can I install or enable openssl for ruby 1.8.6 in >> order to complete my install for rails. >> >> Thank you! > > Jason, > I ran into the exact same issue recently. Make sure you have the Open > SSL development libraries and header files somewhere in a standard > location for compiling software, then try: make clean, configure, make, > and make install. You didn't specify which OS you do have, so, YMMV :) > > HTH, > Howard -- Posted via http://www.ruby-forum.com/.
From: Jason Bornhoft on 3 Jul 2008 00:12
Still getting the same error... make: Nothing to be done for `all'. How can I ensure that the headers and dev libraries are properly installed? Jason Bornhoft wrote: > Thank you. I'm using a non-debian linux... > > I installed openssl from scratch. Let me try what you've suggested. > > > > > Howard Roberts wrote: >> Jason Bornhoft wrote: >> >>> I went to /ruby-1.8.6/ext/openssl and typed make and received the >>> following error message: >>> >>> make: Nothing to be done for `all'. >>> >>> >>> My question is: How can I install or enable openssl for ruby 1.8.6 in >>> order to complete my install for rails. >>> >>> Thank you! >> >> Jason, >> I ran into the exact same issue recently. Make sure you have the Open >> SSL development libraries and header files somewhere in a standard >> location for compiling software, then try: make clean, configure, make, >> and make install. You didn't specify which OS you do have, so, YMMV :) >> >> HTH, >> Howard -- Posted via http://www.ruby-forum.com/. |