Prev: [ANN] Faye 0.5: WebSockets, protocol extensions and CometDintegration
Next: TCPServer Muliple Clients by Name or Alias
From: Kota Weaver on 19 Jul 2010 18:59 Hello, I am new to Ruby, and I have played around a bit using a pre-built package of 1.8.7. I am running openSUSE 11.3 64-bit, and I am trying to compile 1.9.1. For some reason, I seem to keep running into this problem with OpenSSL: compiling openssl make[1]: Entering directory `/home/kota/Programs/Ruby/ruby-1.9.1-p429/ext/openssl' gcc -I. -I../../.ext/include/x86_64-linux -I../.././include -I../.././ext/openssl -DRUBY_EXTCONF_H=\"extconf.h\" -fPIC -O2 -g -Wall -Wno-parentheses -o ossl_pkcs7.o -c ossl_pkcs7.c make[1]: Leaving directory `/home/kota/Programs/Ruby/ruby-1.9.1-p429/ext/openssl' ossl_pkcs7.c:575:14: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token ossl_pkcs7.c: In function 'ossl_pkcs7_set_certificates': ossl_pkcs7.c:613:5: warning: implicit declaration of function 'pkcs7_get_certs_or_crls' ossl_pkcs7.c:613:11: warning: assignment makes pointer from integer without a cast ossl_pkcs7.c: In function 'ossl_pkcs7_get_certificates': ossl_pkcs7.c:623:5: warning: passing argument 1 of 'ossl_x509_sk2ary' makes pointer from integer without a cast ossl.h:117:7: note: expected 'struct stack_st_X509 *' but argument is of type 'int' ossl_pkcs7.c: In function 'ossl_pkcs7_set_crls': ossl_pkcs7.c:653:10: warning: assignment makes pointer from integer without a cast ossl_pkcs7.c: In function 'ossl_pkcs7_get_crls': ossl_pkcs7.c:663:5: warning: passing argument 1 of 'ossl_x509crl_sk2ary' makes pointer from integer without a cast ossl.h:118:7: note: expected 'struct stack_st_X509_CRL *' but argument is of type 'int' make[1]: *** [ossl_pkcs7.o] Error 1 make: *** [mkmain.sh] Error 1 I have libopenssl-devel libopenssl1_0_0 libopenssl1_0_0-32bit openssl installed. If anyone could give me a clue as to whats wrong, I would greatly appreciate it. Thanks! -- Posted via http://www.ruby-forum.com/.
From: Roger Pack on 21 Jul 2010 14:36 > I have libopenssl-devel libopenssl1_0_0 libopenssl1_0_0-32bit openssl > installed. If anyone could give me a clue as to whats wrong, I would > greatly appreciate it. Thanks! Try an older version of openssl I don't think it's compatible with 1.0 yet -- Posted via http://www.ruby-forum.com/.
From: Kota Weaver on 21 Jul 2010 15:50 Roger Pack wrote: > >> I have libopenssl-devel libopenssl1_0_0 libopenssl1_0_0-32bit openssl >> installed. If anyone could give me a clue as to whats wrong, I would >> greatly appreciate it. Thanks! > > > Try an older version of openssl I don't think it's compatible with 1.0 > yet I've heard that thats one of the updates that are coming in 1.9 (support for both 0.9 series and 1 series of openSSL)? Or am I incorrect? -- Posted via http://www.ruby-forum.com/.
From: Luis Lavena on 21 Jul 2010 17:43 On Jul 21, 4:50 pm, Kota Weaver <kota.wea...(a)gmail.com> wrote: > Roger Pack wrote: > > >> I have libopenssl-devel libopenssl1_0_0 libopenssl1_0_0-32bit openssl > >> installed. If anyone could give me a clue as to whats wrong, I would > >> greatly appreciate it. Thanks! > > > Try an older version of openssl I don't think it's compatible with 1.0 > > yet > > I've heard that thats one of the updates that are coming in 1.9 (support > for both 0.9 series and 1 series of openSSL)? Or am I incorrect? That is Ruby 1.9.2, not 1.9.1, which is the one you're trying to compile. Fri Apr 23 17:29:35 2010 [ruby-core:29256] -- Luis Lavena
From: Kota Weaver on 21 Jul 2010 18:17
Luis Lavena wrote: > On Jul 21, 4:50�pm, Kota Weaver <kota.wea...(a)gmail.com> wrote: >> for both 0.9 series and 1 series of openSSL)? �Or am I incorrect? > That is Ruby 1.9.2, not 1.9.1, which is the one you're trying to > compile. > > Fri Apr 23 17:29:35 2010 [ruby-core:29256] Ah, ok, thanks. I am trying to compile the "stable snapshot" on the Ruby downloads page. I assume that should work with openSSL 1? -- Posted via http://www.ruby-forum.com/. |