cbuchner1 / CudaMiner

a CUDA accelerated litecoin mining application based on pooler's CPU miner
Other
687 stars 304 forks source link

error at configure, eror massage is "configure: error: OpenSSL library required" #175

Open jackynanshan opened 3 years ago

jackynanshan commented 3 years ago

Hi,

I try to compile CudaMiner, but broke in configure. The error message is: configure: error: OpenSSL library required My environment is:

joshuamsalazar commented 3 years ago

Please run:

sed -i s/SSL_library_init/OPENSSL_init_ssl/ configure.ac configure

It will do the trick

pvdvialas commented 3 years ago

Thanks much, @joshuamsalazar --- I've been fighting with this for days. First thinking my OpenSSL was installed to the wrong path, then thinking my path specification was incorrect in my config settings.

pablitomilenio commented 6 months ago

sudo apt install libssl-dev

./configure.sh

and then when the Openssl error appairs again run:

sed -i s/SSL_library_init/OPENSSL_init_ssl/ configure.ac configure

this should fix it