diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2010-01-07 10:29:29 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2010-01-07 10:44:44 -0500 |
commit | 27fe7a7303d93bc38df1f3c2861d07af3e82546d (patch) | |
tree | 2c15a730b18595e8e06cd66df5954eda671c0519 | |
parent | c9a210f15887b5b28eb8a9445597194fa6c82833 (diff) |
configure: Fix matching for dri driver to actually work
The shell case statement obviously only evaluates the first matching
block. Thanks to Julien Cristau for spotting the bug.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d3fbd02713..d8af5ea9ef 100644 --- a/configure.ac +++ b/configure.ac @@ -797,7 +797,9 @@ case $DRI_DIRS in *i915*|*i965*) PKG_CHECK_MODULES([INTEL], [libdrm_intel]) ;; +esac +case $DRI_DIRS in *radeon*|*r200*|*r300*|*r600*) PKG_CHECK_MODULES([LIBDRM_RADEON], [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED], |