diff options
author | jakub <jakub> | 1999-09-30 14:37:48 +0000 |
---|---|---|
committer | jakub <jakub> | 1999-09-30 14:37:48 +0000 |
commit | 63284c8dc624797ad772a294f7ce70b9cdcb6fdc (patch) | |
tree | 7ad71a34789ab2059a9be6ca6e02d417a95b0da5 /xserver.py | |
parent | 64c6641220bdb708fc35982c3e6ec212560bd5f8 (diff) | |
download | anaconda-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.py | 10 |
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") |