From ce65cc1f1f648f17d9284e65f1ad69be647de3d3 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 18 Jan 2017 13:54:03 +0000 Subject: [PATCH] configure.ac: disable enable_gallium_llvm in the !x86 case Already implicitly handled throughout, but keep it clear and disable gallium-llvm. This change should be a no-op. Signed-off-by: Emil Velikov Reviewed-by: Tobias Droste --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 00425690b26..1251b83c408 100644 --- a/configure.ac +++ b/configure.ac @@ -1731,6 +1731,7 @@ AC_ARG_ENABLE([gallium-llvm], if test "x$enable_gallium_llvm" = xauto; then case "$host_cpu" in i*86|x86_64|amd64) enable_gallium_llvm=yes;; + *) enable_gallium_llvm=no;; esac fi -- 2.30.2