Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/distrib/utils/sysinst/arch/news68k Pull up revision 1.1...



details:   https://anonhg.NetBSD.org/src/rev/111308f02b08
branches:  netbsd-1-6
changeset: 527737:111308f02b08
user:      lukem <lukem%NetBSD.org@localhost>
date:      Wed Jun 05 03:58:58 2002 +0000

description:
Pull up revision 1.14 (requested by tsutsui in ticket #152):
Don't call toggle_getit() for X11 fonts and servers in md_set_no_x().
They are disabled by default.

diffstat:

 distrib/utils/sysinst/arch/news68k/md.c |  16 +++++++++-------
 1 files changed, 9 insertions(+), 7 deletions(-)

diffs (28 lines):

diff -r fa5da342a740 -r 111308f02b08 distrib/utils/sysinst/arch/news68k/md.c
--- a/distrib/utils/sysinst/arch/news68k/md.c   Wed Jun 05 03:57:23 2002 +0000
+++ b/distrib/utils/sysinst/arch/news68k/md.c   Wed Jun 05 03:58:58 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.c,v 1.13 2002/05/20 16:10:33 lukem Exp $    */
+/*     $NetBSD: md.c,v 1.13.2.1 2002/06/05 03:58:58 lukem Exp $        */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -238,10 +238,12 @@
 md_set_no_x()
 {
 
-       toggle_getit (9);
-       toggle_getit (10);
-       toggle_getit (11);
-       toggle_getit (12);
-       toggle_getit (13);
-       toggle_getit (14);
+       toggle_getit (9);       /* X11 clients */
+#if 0
+       toggle_getit (10);      /* X11 fonts */
+       toggle_getit (11);      /* X11 servers */
+#endif
+       toggle_getit (12);      /* X11 contrib */
+       toggle_getit (13);      /* X programming */
+       toggle_getit (14);      /* X11 Misc. */
 }



Home | Main Index | Thread Index | Old Index