[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Using openssl

Luke Ivers

3/2/2007 9:13:00 PM

I'm trying to run ruby extconf.rb in ext/openssl, and I get the
following:

=== OpenSSL for Ruby configurator ===
=== Checking for system dependent stuff... ===
checking for t_open() in -lnsl... no
checking for socket() in -lsocket... no
checking for unistd.h... yes
checking for sys/time.h... yes
checking for assert.h... yes
=== Checking for required stuff... ===
checking for openssl/ssl.h... no
=== Checking for required stuff failed. ===
Makefile wasn't created. Fix the errors above.

I'm using Ubuntu 6.10... can anyone tell me what I can do to fix the
problems? I have openssl installed via 'apt-get install openssl'

I don't even know what the first two are talking about at all (the
t_open and socket())

--
Posted via http://www.ruby-....

1 Answer

Luke Ivers

3/2/2007 9:42:00 PM

0

Luke Ivers wrote:
> I'm trying to run ruby extconf.rb in ext/openssl, and I get the
> following:
>
> === OpenSSL for Ruby configurator ===
> === Checking for system dependent stuff... ===
> checking for t_open() in -lnsl... no
> checking for socket() in -lsocket... no
> checking for unistd.h... yes
> checking for sys/time.h... yes
> checking for assert.h... yes
> === Checking for required stuff... ===
> checking for openssl/ssl.h... no
> === Checking for required stuff failed. ===
> Makefile wasn't created. Fix the errors above.
>
> I'm using Ubuntu 6.10... can anyone tell me what I can do to fix the
> problems? I have openssl installed via 'apt-get install openssl'
>
> I don't even know what the first two are talking about at all (the
> t_open and socket())

Answered my own question, at least
sudo apt-get install libssl-dev

--
Posted via http://www.ruby-....