summaryrefslogtreecommitdiffstats
path: root/xserver.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-09-30 14:37:48 +0000
committerjakub <jakub>1999-09-30 14:37:48 +0000
commit63284c8dc624797ad772a294f7ce70b9cdcb6fdc (patch)
tree7ad71a34789ab2059a9be6ca6e02d417a95b0da5 /xserver.py
parent64c6641220bdb708fc35982c3e6ec212560bd5f8 (diff)
downloadanaconda-63284c8dc624797ad772a294f7ce70b9cdcb6fdc.tar.gz
anaconda-63284c8dc624797ad772a294f7ce70b9cdcb6fdc.tar.xz
anaconda-63284c8dc624797ad772a294f7ce70b9cdcb6fdc.zip
Do the right thing with iso8859-2 fonts. Make sun servers use Latin2
fonts when needed. And fix endianess in gettext so that it works on sparc (ugh).
Diffstat (limited to 'xserver.py')
-rw-r--r--xserver.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/xserver.py b/xserver.py
index 16bb34a98..618894330 100644
--- a/xserver.py
+++ b/xserver.py
@@ -66,7 +66,9 @@ Section "Files"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/"
+ FontPath "/usr/share/fonts/ISO8859-2/misc/"
FontPath "/usr/share/fonts/ISO8859-2/75dpi/"
+ FontPath "/usr/share/fonts/ISO8859-2/100dpi/"
EndSection
Section "ServerFlags"
@@ -118,6 +120,14 @@ EndSection
if x.device:
args.append ("-dev")
args.append ('/dev/' + x.device)
+ args.append("-fp")
+ args.append("/usr/X11R6/lib/X11/fonts/misc/,"
+ "/usr/X11R6/lib/X11/fonts/75dpi/,"
+ "/usr/X11R6/lib/X11/fonts/100dpi/,"
+ "/usr/X11R6/lib/X11/fonts/cyrillic/,"
+ "/usr/share/fonts/ISO8859-2/misc/,"
+ "/usr/share/fonts/ISO8859-2/75dpi/,"
+ "/usr/share/fonts/ISO8859-2/100dpi/")
else:
args.append("-xf86config")
args.append("/tmp/XF86Config")