Skip to content

Commit

Permalink
commit fix for configure.ac file (add OpenSSL) and update the README.…
Browse files Browse the repository at this point in the history
…txt file to match 2014-02-07 release.
  • Loading branch information
cbuchner1 committed Feb 7, 2014
1 parent 9d03ad6 commit d90235c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.txt
Expand Up @@ -10,6 +10,7 @@ If you find this tool useful and like to support its continued
BTC donation address: 16hJF5mceSojnTD3ZTUDqdRhDyPJzoRakM
YAC donation address: Y87sptDEcpLkLeAuex6qZioDbvy1qXZEj4
VTC donation address: VrjeFzMgvteCGarLw85KivBzmsiH9fqp4a
MAX donation address: mHrhQP9EFArechWxTFJ97s9D3jvcCvEEnt
***************************************************************

>>> Introduction <<<
Expand Down Expand Up @@ -366,6 +367,12 @@ best to re-tune your kernel configuration after every N-factor change.

>>> RELEASE HISTORY <<<

The February 7th release adds fixes for stratum pool mining.

The February 6th release added a first, but working keccak algorithm
support to instamine at the MaxCoin launch. The miner worked, and we
basically owned the coin.

The February 4th release fixes a problem with very apparently incorrect
autotune measurements and it also repairs the multi-GPU support. So you
can again use a single cudaminer to drive all your GPUs. It wasn't the
Expand Down
3 changes: 3 additions & 0 deletions configure.ac
Expand Up @@ -100,6 +100,9 @@ AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS="-lpthread",
AC_CHECK_LIB([pthreadGC], [pthread_create], PTHREAD_LIBS="-lpthreadGC"
))))

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])])

AM_CONDITIONAL([WANT_JANSSON], [test x$request_jansson = xtrue])
AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
AM_CONDITIONAL([ARCH_x86], [test x$have_x86 = xtrue])
Expand Down

0 comments on commit d90235c

Please sign in to comment.