summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2017-01-18 13:54:03 +0000
committerEmil Velikov <emil.l.velikov@gmail.com>2017-02-10 11:47:24 +0000
commitce65cc1f1f648f17d9284e65f1ad69be647de3d3 (patch)
tree0b39827650f5ecc23578433151ac89004891e855
parent4d8bb9cf8c8e8bd3185461760ca89e6021c0b8e0 (diff)
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 <emil.velikov@collabora.com> Reviewed-by: Tobias Droste <tdroste@gmx.de>
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 00425690b2..1251b83c40 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