summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/Xconfig/xfree.pm13
2 files changed, 14 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d095235..b3360e8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- do configure XFS if installed
- when removing/replacing an InputDevice section, ensure we remove the
corresponding entry in ServerLayout. ie do not rely on InputDevice sections
to use XFdrake-compatible Identifiers (as suggested by fcrozat)
diff --git a/lib/Xconfig/xfree.pm b/lib/Xconfig/xfree.pm
index 5c3f5bc..c1e57d0 100644
--- a/lib/Xconfig/xfree.pm
+++ b/lib/Xconfig/xfree.pm
@@ -812,6 +812,19 @@ Section "ServerFlags"
AllowMouseOpenFail # allows the server to start up even if the mouse does not work
END
+if (-x '/usr/bin/xfs') {
+ warn "Configuring X11\n";
+ $default_header .= <<'END';
+Section "Files"
+ # font server independent of the X server to render fonts.
+ FontPath "unix/:-1"
+ # minimal fonts to allow X to run without xfs
+ FontPath "/usr/share/fonts/misc:unscaled"
+EndSection
+END
+}
+
+
require detect_devices;
$default_header .= <<'END_XBOX' if detect_devices::is_xbox();
Option "PciProbe1" "false"