[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Compiling Ruby on OSX, OpenSSL error and possible fix

Juan Matías

1/21/2009 6:52:00 PM

I got this error compiling Ruby (ruby-1.8.6-p287) on OSX (10.5.6, Darwin
Kernel Version 9.6.0):

openssl_missing.h:123: error: conflicting types for 'BN_rand_range'
/usr/local/include/openssl/bn.h:411: error: previous declaration of
'BN_rand_range' was here
openssl_missing.h:124: error: conflicting types for
'BN_pseudo_rand_range'
/usr/local/include/openssl/bn.h:412: error: previous declaration of
'BN_pseudo_rand_range' was here
make[1]: *** [openssl_missing.o] Error 1

These functions were declared in two different files. Once in
include/openssl/bn.h and again in
ruby-1.8.6-p287/ext/openssl/openssl_missing.h

I solved it commenting these two lines in include/openssl/bn.h[411,412].
--
Posted via http://www.ruby-....

1 Answer

Juan Matías

1/21/2009 7:33:00 PM

0

Late, running Gem I got this error:

$ gem update
dyld: NSLinkModule() error
dyld: Symbol not found: _EVP_CIPHER_CTX_block_size
Referenced from:
/usr/local/lib/ruby/1.8/i686-darwin9.6.0/openssl.bundle
Expected in: flat namespace

Trace/BPT trap


Removing openssl port installed previously with macports all work fine!

You forgive for this monologue.
Juan Matias.

Juan Matias wrote:
> I got this error compiling Ruby (ruby-1.8.6-p287) on OSX (10.5.6, Darwin
> Kernel Version 9.6.0):
>
> openssl_missing.h:123: error: conflicting types for 'BN_rand_range'
> /usr/local/include/openssl/bn.h:411: error: previous declaration of
> 'BN_rand_range' was here
> openssl_missing.h:124: error: conflicting types for
> 'BN_pseudo_rand_range'
> /usr/local/include/openssl/bn.h:412: error: previous declaration of
> 'BN_pseudo_rand_range' was here
> make[1]: *** [openssl_missing.o] Error 1
>
> These functions were declared in two different files. Once in
> include/openssl/bn.h and again in
> ruby-1.8.6-p287/ext/openssl/openssl_missing.h
>
> I solved it commenting these two lines in include/openssl/bn.h[411,412].

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