summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/Xconfig/proprietary.pm5
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 38a4818..75a6db2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- display message This setting will be activated after the installation."
only during installation
+- handle fglrx_dri.so handled by alternatives (Anssi)
Version 0.37 - 4 October 2007, by Pascal "Pixel" Rigaux
diff --git a/lib/Xconfig/proprietary.pm b/lib/Xconfig/proprietary.pm
index 2c5e713..a048717 100644
--- a/lib/Xconfig/proprietary.pm
+++ b/lib/Xconfig/proprietary.pm
@@ -86,8 +86,9 @@ sub may_use_Driver2 {
$card2;
} elsif ($card2->{Driver} eq 'fglrx') {
$check_drv->('fglrx_drv', "fglrx$card2->{DriverVersion}") or return;
- $card2->{DriverVersion} eq '-hd2000' || -e "$::prefix$modules_dir/dri/fglrx_dri.so"
- || -e "$::prefix/usr/$lib/dri/fglrx_dri.so" or
+ -e "$::prefix/usr/$lib/fglrx$card2->{DriverVersion}/dri/fglrx_dri.so" ||
+ -e "$::prefix$modules_dir/dri/fglrx_dri.so" ||
+ -e "$::prefix/usr/$lib/dri/fglrx_dri.so" or
log::l("proprietary fglrx_dri.so missing"), return;
log::explanations("Using specific ATI fglrx and DRI drivers");