From 91af258e7756a2d713a7886daf126f02c0b70e49 Mon Sep 17 00:00:00 2001 From: ckolivas Date: Thu, 19 Jan 2012 15:55:45 +1100 Subject: [PATCH] Add configuration option for CPU mining which will default to off. --- configure.ac | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e4ad7295..2a5e035f 100644 --- a/configure.ac +++ b/configure.ac @@ -112,6 +112,14 @@ if test "x$ATISTREAMSDKROOT" != x; then OPENCL_LIBS="-L$ATISTREAMSDKROOT/lib/$ATI_STREAM_ARCH_DIR $OPENCL_LIBS" fi +AC_ARG_ENABLE([cpumining], + [AC_HELP_STRING([--enable-cpumining],[Build with cpu mining support(default disabled)])], + [cpumining=$enableval] + ) +if test "x$cpumining" = xyes; then + AC_DEFINE_UNQUOTED([WANT_CPUMINE], [1], [Enable CPUMINING]) +fi + AC_ARG_ENABLE([opencl], [AC_HELP_STRING([--disable-opencl],[Override detection and disable building with opencl])], [opencl=$enableval] @@ -323,7 +331,14 @@ else echo " ADL..................: Detection overrided. GPU monitoring support DISABLED" fi -echo " ASM.(for CPU mining).: $has_yasm" +echo + +if test "x$cpumining" = xyes; then + echo " CPU MINING...........: Enabled" + echo " ASM.(for CPU mining).: $has_yasm" +else + echo " CPU MINING...........: Disabled" +fi echo echo "Compilation............: make (or gmake)" echo " CPPFLAGS.............: $CPPFLAGS"