configure.ac: disable enable_gallium_llvm in the !x86 case
authorEmil Velikov <emil.velikov@collabora.com>
Wed, 18 Jan 2017 13:54:03 +0000 (13:54 +0000)
committerEmil Velikov <emil.l.velikov@gmail.com>
Fri, 10 Feb 2017 11:47:24 +0000 (11:47 +0000)
Already implicitly handled throughout, but keep it clear and disable
gallium-llvm. This change should be a no-op.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Tobias Droste <tdroste@gmx.de>
configure.ac

index 00425690b2619675b4cf6a75e9c02d75af52d1d4..1251b83c40869320bc1e7bd56e7f35645c9d4fa7 100644 (file)
@@ -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