diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-16 13:39:08 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-05-16 13:39:08 +0000 |
| commit | e160c5f1482bd29485cdf2c88922f64e4578a966 (patch) | |
| tree | 47b7ea19243eb00b0869d23e297611a1a087e28e /usr.sbin/sysinstall | |
| parent | cdb7618ef966e39fc871a5349de1781fb9979182 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sysinstall')
| -rw-r--r-- | usr.sbin/sysinstall/dist.c | 4 | ||||
| -rw-r--r-- | usr.sbin/sysinstall/menus.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index a596501361c2..8b9ec23c1cea 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.50 1996/05/01 08:50:00 jkh Exp $ + * $Id: dist.c,v 1.51 1996/05/16 13:30:22 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -283,7 +283,7 @@ distSetXF86(dialogMenuItem *self) if (XF86FontDists) XF86Dists |= DIST_XF86_FONTS; if (XF86Dists) - Dists |= (DIST_XF86 | DIST_COMPAT21); /* XXX for now we need compat21 for X to work XXX */ + Dists |= DIST_XF86; msgDebug("SetXF86 Masks: Server: %0x, Fonts: %0x, XDists: %0x, Dists: %0x\n", XF86ServerDists, XF86FontDists, XF86Dists, Dists); } diff --git a/usr.sbin/sysinstall/menus.c b/usr.sbin/sysinstall/menus.c index 11989a0c01d5..f5f149e20f49 100644 --- a/usr.sbin/sysinstall/menus.c +++ b/usr.sbin/sysinstall/menus.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: menus.c,v 1.61 1996/05/16 11:47:38 jkh Exp $ + * $Id: menus.c,v 1.62 1996/05/16 13:30:24 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -131,7 +131,7 @@ checkDistDeveloper(dialogMenuItem *self) static int checkDistXDeveloper(dialogMenuItem *self) { - return (Dists == (_DIST_DEVELOPER | DIST_XF86 | DIST_COMPAT21 ) && SrcDists == DIST_SRC_ALL); + return (Dists == (_DIST_DEVELOPER | DIST_XF86) && SrcDists == DIST_SRC_ALL); } static int @@ -149,7 +149,7 @@ checkDistUser(dialogMenuItem *self) static int checkDistXUser(dialogMenuItem *self) { - return (Dists == (_DIST_USER | DIST_XF86 | DIST_COMPAT21)); + return (Dists == (_DIST_USER | DIST_XF86)); } static int |
