Post
Topic
Board Pools (Altcoins)
Re: [ANN] 1GH.COM - AUR / HVC / MAX / MMC / PTS Anonymous Pool ★
by
itsik78
on 09/03/2014, 13:02:13 UTC
Hey,
HVC question:
Trying to compile the custom minerd.
Apt-got all needed libraries and I get this:
Code:
/usr/bin/ld: minerd-heavy.o: undefined reference to symbol 'SHA256_Init@@OPENSSL_1.0.0'
/lib/x86_64-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing from command line

Any idea what I need to do?

Thanks

Do you have libssl-dev installed?
Fixed it by adding these 2 lines to configure.ac:
Code:
AC_CHECK_LIB([ssl],[SSL_library_init], [], [AC_MSG_ERROR([OpenSSL library required])])
AC_CHECK_LIB([crypto],[EVP_DigestFinal_ex], [], [AC_MSG_ERROR([OpenSSL library required])])