Added HAVE_OPENCL define to config.h, added OpenCL message at the end of configure script.
diff --git a/configure.ac b/configure.ac
index bd9ecfe..7f881f6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -51,10 +51,11 @@ AC_LINK_IFELSE(
[AC_LANG_PROGRAM([[#include <CL/cl.h>]],
[[return clSetKernelArg(0, 0, 0, 0); ]])],
[AC_MSG_RESULT(yes)
- AM_CONDITIONAL(HAVE_OPENCL, true)
+ AC_DEFINE([HAVE_OPENCL], [1], [Defined to 1 if OpenCL is present on the system.])
+ found_opencl=1
OPENCL_LIBS=-lOpenCL],
[AC_MSG_RESULT(no)
- AM_CONDITIONAL(HAVE_OPENCL, false)])
+ found_opencl=0])
LIBS=$SAVED_LIBS
AC_CHECK_LIB(jansson, json_loads, request_jansson=false, request_jansson=true)
@@ -125,3 +126,11 @@ AC_CONFIG_FILES([
])
AC_OUTPUT
+
+echo ''
+
+if test $found_opencl = 1; then
+ echo OpenCL: FOUND. GPU mining support enabled.
+else
+ echo OpenCL: NOT FOUND. GPU mining support DISABLED.
+fi