[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
default font filenames
From: |
Alfred M. Szmidt |
Subject: |
default font filenames |
Date: |
Wed, 29 Sep 2004 21:49:12 +0200 |
Fonts are not libraries, and thus should not be in /lib.
I sent this patch along time ago, but nobody commented/applied it.
2004-09-29 Alfred M. Szmidt <ams@kemisten.nu>
* vga.c (DEFAULT_VGA_FONT, DEFAULT_VGA_FONT_ITALIC)
(DEFAULT_VGA_FONT_BOLD, DEFAULT_VGA_FONT_BOLD_ITALIC): Default
fonts for the VGA driver are now located in `/share/hurd/fonts/'
and not in `/lib/hurd/fonts/'.
--- console-client/vga.c 21 Mar 2004 20:57:00 +0100 1.5
+++ console-client/vga.c 29 Sep 2004 21:35:05 +0200
@@ -49,17 +49,17 @@
#define VGA_DISP_HEIGHT 25
/* The font file. */
-#define DEFAULT_VGA_FONT "/lib/hurd/fonts/vga-system.bdf"
+#define DEFAULT_VGA_FONT "/share/hurd/fonts/vga-system.bdf"
static char *vga_display_font;
-#define DEFAULT_VGA_FONT_ITALIC "/lib/hurd/fonts/vga-system-italic.bdf"
+#define DEFAULT_VGA_FONT_ITALIC "/share/hurd/fonts/vga-system-italic.bdf"
static char *vga_display_font_italic;
-#define DEFAULT_VGA_FONT_BOLD "/lib/hurd/fonts/vga-system-bold.bdf"
+#define DEFAULT_VGA_FONT_BOLD "/share/hurd/fonts/vga-system-bold.bdf"
static char *vga_display_font_bold;
#define DEFAULT_VGA_FONT_BOLD_ITALIC \
- "/lib/hurd/fonts/vga-system-bold-italic.bdf"
+ "/share/hurd/fonts/vga-system-bold-italic.bdf"
static char *vga_display_font_bold_italic;
/* If false use all colors, else use double font slots. */
- default font filenames,
Alfred M. Szmidt <=