diff options
author | Emil Velikov <[email protected]> | 2017-02-07 20:48:12 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-02-10 13:54:57 +0000 |
commit | ba43238abf411fb4d947007b9c59ce2da4ad735a (patch) | |
tree | ae1eee1ef21b9158c6b9366801daa30287ea9063 | |
parent | 7e6b4a2dd75a4082cb0c82a4bf240a6d2059a410 (diff) |
configure.ac: move AC_ARG_ENABLE([gallium-llvm] hunk further up
With next commits we'll require --enable-gallium-llvm (en route to a
greater good later on) for RADV. The latter is required to ensure that
as otherwise we'll fail to build.
Cc: Dave Airlie <[email protected]>
Cc: "17.0" <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Tobias Droste <[email protected]>
(cherry picked from commit 38abcdba8a59e88a91d598951323b977fb3fa1ad)
-rw-r--r-- | configure.ac | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac index 57fd4075dc0..d991969d553 100644 --- a/configure.ac +++ b/configure.ac @@ -1731,6 +1731,24 @@ if test -n "$with_dri_drivers"; then fi +dnl +dnl Gallium LLVM +dnl +AC_ARG_ENABLE([gallium-llvm], + [AS_HELP_STRING([--enable-gallium-llvm], + [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])], + [enable_gallium_llvm="$enableval"], + [enable_gallium_llvm=auto]) + +if test -z "$with_gallium_drivers"; then + enable_gallium_llvm=no +fi +if test "x$enable_gallium_llvm" = xauto; then + case "$host_cpu" in + i*86|x86_64|amd64) enable_gallium_llvm=yes;; + esac +fi + # # Vulkan driver configuration # @@ -2137,24 +2155,6 @@ if ! echo "$egl_platforms" | grep -q 'x11'; then GL_PC_CFLAGS="$GL_PC_CFLAGS -DMESA_EGL_NO_X11_HEADERS" fi -dnl -dnl Gallium LLVM -dnl -AC_ARG_ENABLE([gallium-llvm], - [AS_HELP_STRING([--enable-gallium-llvm], - [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])], - [enable_gallium_llvm="$enableval"], - [enable_gallium_llvm=auto]) - -if test -z "$with_gallium_drivers"; then - enable_gallium_llvm=no -fi -if test "x$enable_gallium_llvm" = xauto; then - case "$host_cpu" in - i*86|x86_64|amd64) enable_gallium_llvm=yes;; - esac -fi - dnl Directory for XVMC libs AC_ARG_WITH([xvmc-libdir], [AS_HELP_STRING([--with-xvmc-libdir=DIR], |