summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorEmil Velikov <[email protected]>2014-02-03 21:05:19 +0000
committerEmil Velikov <[email protected]>2014-02-18 00:00:13 +0000
commit35f6eed742fa8d9ede8bd781fbd89a0212815de4 (patch)
tree5392efb10e18a2820ca7da68093a6dc5d1830c54 /configure.ac
parent65e67b9bf7030ae1d9f74a16f0704f33c40688ca (diff)
configure: compact ppc/sparc DRI_DIRS handling
Both arches have the same list of dri_dirs. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 2 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index 5b3e007bf18..ee6d253664b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -990,14 +990,8 @@ if test "x$enable_dri" = xyes; then
fi
case "$host_cpu" in
- powerpc*)
- # Build only the drivers for cards that exist on PowerPC.
- if test "x$DRI_DIRS" = "xyes"; then
- DRI_DIRS="r200 radeon swrast"
- fi
- ;;
- sparc*)
- # Build only the drivers for cards that exist on sparc
+ powerpc* | sparc*)
+ # Build only the drivers for cards that exist on PowerPC/sparc
if test "x$DRI_DIRS" = "xyes"; then
DRI_DIRS="r200 radeon swrast"
fi