Install 100dpi fonts by default when installing X11: fun as using 75dpi

fonts on a 100dpi display is, the jaggies just aren't worth it.  DPMI
auto-configures higher DPIs on many modern displays now.
This commit is contained in:
Robert Watson 2003-12-17 23:08:13 +00:00
parent cf3fef3bdd
commit 7cecfcc8c9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123617

View File

@ -240,7 +240,7 @@ distSetX(void)
Dists |= DIST_XF86;
XF86Dists = DIST_XF86_CLIENTS | DIST_XF86_LIB | DIST_XF86_PROG | DIST_XF86_MAN | DIST_XF86_DOC | DIST_XF86_SERVER | DIST_XF86_FONTS;
XF86ServerDists = DIST_XF86_SERVER_FB;
XF86FontDists = DIST_XF86_FONTS_BITMAPS | DIST_XF86_FONTS_75;
XF86FontDists = DIST_XF86_FONTS_BITMAPS | DIST_XF86_FONTS_75 | DIST_XF86_FONTS_100;
return distSetXF86(NULL);
}