diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index e716ad011533..310bb9cd2dd1 100644 --- a/configure.ac +++ b/configure.ac @@ -1106,10 +1106,6 @@ AC_ARG_ENABLE(opengl, AS_HELP_STRING([--disable-opengl], [Determines whether to build the OpenGL 3D slide transitions and canvas component.])) -AC_ARG_ENABLE(opencl, - AS_HELP_STRING([--disable-opencl], - [Determines whether to build with OpenCL support.])) - AC_ARG_ENABLE(dbus, AS_HELP_STRING([--disable-dbus], [Determines whether to enable features that depend on dbus. @@ -10314,17 +10310,11 @@ dnl ================================================= dnl Check whether to build with OpenCL support. dnl ================================================= -AC_MSG_CHECKING([whether to build with the OpenCL support.]) ENABLE_OPENCL= - -if test $_os != iOS -a $_os != Android -a "x$enable_opencl" != "xno"; then - AC_MSG_RESULT([yes]) +if test $_os != iOS -a $_os != Android; then ENABLE_OPENCL=TRUE AC_DEFINE(HAVE_FEATURE_OPENCL) -else - AC_MSG_RESULT([no]) fi - AC_SUBST(ENABLE_OPENCL) dnl =================================================================== |