[Mesa-dev] [PATCH] configure: By default, don't build non-ARM DRI drivers on ARM.

Eric Anholt eric at anholt.net
Tue Feb 17 16:40:05 PST 2015


As far as I know, none of the others (i915 i965 nouveau r200 radeon) could
appear on an ARM device.
---
 configure.ac | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure.ac b/configure.ac
index d4cf4b8..e9bd4cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1115,6 +1115,10 @@ if test "x$enable_dri" = xyes; then
                 with_dri_drivers="r200 radeon swrast"
             fi
             ;;
+        arm*)
+            if test "x$with_dri_drivers" = "xyes"; then
+                with_dri_drivers="swrast"
+            fi
         esac
         ;;
     *freebsd* | dragonfly* | *netbsd* | openbsd*)
-- 
2.1.4



More information about the mesa-dev mailing list