From 2d399bb1837e01856c8e489aa5ec439ce9a1fdbc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michel=20D=C3=A4nzer?= Date: Tue, 10 Jun 2014 11:25:04 +0900 Subject: [PATCH] configure: Only check for OpenCL without LLVM when the latter is certain MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit LLVM is enabled by default for some architectures, but the test was failing before that. Signed-off-by: Michel Dänzer Reviewed-by: Emil Velikov Reviewed-by: Tom Stellard Cc: "10.1 10.2" --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 1525b20..cb14c0c 100644 --- a/configure.ac +++ b/configure.ac @@ -1462,10 +1462,6 @@ if test "x$enable_opencl" = xyes; then AC_MSG_ERROR([cannot enable OpenCL without Gallium]) fi - if test "x$enable_gallium_llvm" != xyes; then - AC_MSG_ERROR([cannot enable OpenCL without LLVM]) - fi - if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 7; then AC_MSG_ERROR([gcc >= 4.7 is required to build clover]) fi @@ -1766,6 +1762,10 @@ if test "x$enable_gallium_llvm" = xyes; then else MESA_LLVM=0 LLVM_VERSION_INT=0 + + if test "x$enable_opencl" = xyes; then + AC_MSG_ERROR([cannot enable OpenCL without LLVM]) + fi fi dnl Directory for XVMC libs -- 2.7.4