<div dir="ltr">[SOLVED]<div style>I just copied libssl.so and libcrypto.so in /usr/lib with name libssl.so.6 and libcrypto.so.6 (as pointed out by yoann pavia )</div><div style>Now I installed Gate 6.2 !</div><div style>Many many thanks to all of you </div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Dec 19, 2012 at 3:12 PM, Paweł Kowalski <span dir="ltr"><<a href="mailto:flukson@gmail.com" target="_blank">flukson@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I habe realised that you have problem with ROOT not with libssl.<br>
Probably you need to set ROOTSYS path. To do it, tou can add these<br>
lines to your .bashr file and restart console:<br>
<br>
export ROOTSYS=/opt/root<br>
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${ROOTSYS}/lib<br>
export PATH=${PATH}:${ROOTSYS}/bin<br>
<br>
/opt/root should be your path to root.<br>
<br>
2012/12/19 open researcher <<a href="mailto:openresearcher90@gmail.com">openresearcher90@gmail.com</a>>:<br>
<div class="HOEnZb"><div class="h5">> I have installed libssl-dev also and with make (without -j2) still the error<br>
> is there.<br>
><br>
><br>
> On Wed, Dec 19, 2012 at 2:00 PM, Paweł Kowalski <<a href="mailto:flukson@gmail.com">flukson@gmail.com</a>> wrote:<br>
>><br>
>> Try installig development package of openssl. If you will have problem<br>
>> with any other library install dev version.<br>
>><br>
>> Dont use j2 option using compilation.<br>
>><br>
>> Best regards,<br>
>> Pawel Kowalski<br>
>><br>
>> 19-12-2012 09:16, "open researcher" <<a href="mailto:openresearcher90@gmail.com">openresearcher90@gmail.com</a>><br>
>> napisał(a):<br>
>>><br>
>>> hello gate users<br>
>>> I am trying to install gate 6.2, (I have installed geant4.9.5, CLHEP<br>
>>> 2.1.1.0, ROOT 5.34 successfully)<br>
>>><br>
>>> After ccmake if I type make -j2 I am getting following error<br>
>>> -----------------------------------------------------------<br>
>>><br>
>>> avinash@avinash-desktop:~/sim/gate.6.2-build$ make -j2<br>
>>> [  2%] Built target itkzlib<br>
>>> [  7%] Built target ITKMetaIO<br>
>>> Linking CXX executable Gate<br>
>>> /usr/bin/ld: warning: libcrypto.so.6, needed by<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so, not found (try using -rpath or<br>
>>> -rpath-link)<br>
>>> /usr/bin/ld: warning: libssl.so.6, needed by<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so, not found (try using -rpath or<br>
>>> -rpath-link)<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_set_quiet_shutdown'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_CTX_load_verify_locations'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_peek'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_read'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_connect'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_free'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_new'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `EVP_sha1'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_CTX_new'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_set_fd'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_CTX_use_certificate_chain_file'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_shutdown'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_get_error'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSLv23_method'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_CTX_use_PrivateKey_file'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_library_init'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_write'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to `HMAC'<br>
>>> /home/avinash/sim/root_v5.34/lib/libNet.so: undefined reference to<br>
>>> `SSL_CTX_free'<br>
>>> collect2: ld returned 1 exit status<br>
>>> make[2]: *** [Gate] Error 1<br>
>>> make[1]: *** [CMakeFiles/Gate.dir/all] Error 2<br>
>>> make: *** [all] Error 2<br>
>>><br>
>>> -------------------------------------------------------------------------------------------------------------------------------------------<br>
>>><br>
>>> I think this is problem related to OS, I am using ubuntu 10.10 and after<br>
>>> some search in the Internet I found that these two files (libcrypto.so.6 and<br>
>>> libssl.so.6) are related to openssl package but I have already installed it.<br>
>>> (Till now I was using gate 6.1 and it is running fine). I think I have to<br>
>>> create a softlink to these files but I am new to ubuntu and still searching<br>
>>> a way to do this. Has anybody encountered with this problem?<br>
>>> Any help ?<br>
>>><br>
>>> _______________________________________________<br>
>>> Gate-users mailing list<br>
>>> <a href="mailto:Gate-users@lists.opengatecollaboration.org">Gate-users@lists.opengatecollaboration.org</a><br>
>>> <a href="http://lists.opengatecollaboration.org/mailman/listinfo/gate-users" target="_blank">http://lists.opengatecollaboration.org/mailman/listinfo/gate-users</a><br>
><br>
><br>
</div></div></blockquote></div><br></div>