From: Emil Velikov Date: Wed, 18 Jan 2017 13:54:03 +0000 (+0000) Subject: configure.ac: disable enable_gallium_llvm in the !x86 case X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce65cc1f1f648f17d9284e65f1ad69be647de3d3;p=mesa.git 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 --- 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