summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/finish-install2
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 0911aa664..9acba1d1e 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- finish-install: do not offer to configure 3D desktop if none is
+ installed (requires drak3d >= 1.27)
+
Version 12.65 - 14 October 2009
- partitioning wizard:
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install
index c8cd43096..80240e6b5 100755
--- a/perl-install/standalone/finish-install
+++ b/perl-install/standalone/finish-install
@@ -172,6 +172,8 @@ sub ask_users() {
sub ask_glx() {
require Xconfig::glx;
+ my @installed_types = Xconfig::glx::filter_installed_types(\@Xconfig::glx::gl_compositing_types);
+ any { $_->{type} ne "none" } @installed_types or return;
my $glx = Xconfig::glx::detect_may_install($in->do_pkgs);
if ($glx->{supported} && Xconfig::glx::choose_interactive($in, $glx, 'installed_only')) {
Xconfig::glx::write($glx);