mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 10:19:26 +00:00
Yikes! I almost left out the 3D Labs server. :)
This commit is contained in:
parent
4fb051df9b
commit
992109823e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=47165
@ -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.138 1999/04/21 07:22:37 obrien Exp $
|
||||
* $Id: dist.c,v 1.139 1999/05/05 11:34:01 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -152,6 +152,7 @@ static Distribution XF86ServerDistTable[] = {
|
||||
{ "PC98-Servers/X9WEP", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WEP, NULL },
|
||||
{ "PC98-Servers/X9WS", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WS, NULL },
|
||||
{ "PC98-Servers/X9WSN", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WSN, NULL },
|
||||
{ "Servers/X3DL", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_3DL, NULL },
|
||||
{ "Servers/X8514", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_8514, NULL },
|
||||
{ "Servers/XAGX", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_AGX, NULL },
|
||||
{ "Servers/XI128", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_I128, NULL },
|
||||
@ -165,7 +166,6 @@ static Distribution XF86ServerDistTable[] = {
|
||||
{ "Servers/XSVGA", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_SVGA, NULL },
|
||||
{ "Servers/XVG16", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_VGA16, NULL },
|
||||
{ "Servers/XW32", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_W32, NULL },
|
||||
{ "Xnest", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_NEST, NULL },
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: dist.h,v 1.33 1999/04/21 07:42:02 obrien Exp $ */
|
||||
/* $Id: dist.h,v 1.34 1999/05/07 20:31:34 jkh Exp $ */
|
||||
|
||||
#ifndef _DIST_H_INCLUDE
|
||||
#define _DIST_H_INCLUDE
|
||||
@ -100,7 +100,7 @@
|
||||
#define DIST_XF86_SERVER_SVGA 0x1000000
|
||||
#define DIST_XF86_SERVER_VGA16 0x2000000
|
||||
#define DIST_XF86_SERVER_W32 0x4000000
|
||||
#define DIST_XF86_SERVER_NEST 0x8000000
|
||||
#define DIST_XF86_SERVER_3DL 0x8000000
|
||||
#define DIST_XF86_SERVER_ALL 0xFFFFFFF
|
||||
#define DIST_XF86_FONTS 0x10000
|
||||
#define DIST_XF86_FONTS_MISC 0x0001
|
||||
|
@ -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.201 1999/05/12 06:58:18 jkh Exp $
|
||||
* $Id: menus.c,v 1.202 1999/05/12 22:06:00 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -998,6 +998,8 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_VGA16 },
|
||||
{ "Mono", "Standard Monochrome card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_MONO },
|
||||
{ "3DL", "8, 16 and 24 bit color 3D Labs boards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_3DL },
|
||||
{ "8514", "8-bit (256 color) IBM 8514 or compatible card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_8514 },
|
||||
{ "AGX", "8-bit AGX card",
|
||||
@ -1018,8 +1020,6 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_S3V },
|
||||
{ "W32", "8-bit ET4000/W32, /W32i and /W32p cards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_W32 },
|
||||
{ "nest", "A nested server for testing purposes",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_NEST },
|
||||
{ "PC98", "Select an X server for a NEC PC98 [Submenu]",
|
||||
NULL, dmenuSubmenu, NULL, &MenuXF86SelectPC98Server, '>', ' ', '>', 0 },
|
||||
{ "All", "Select all of the above",
|
||||
|
@ -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.201 1999/05/12 06:58:18 jkh Exp $
|
||||
* $Id: menus.c,v 1.202 1999/05/12 22:06:00 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -998,6 +998,8 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_VGA16 },
|
||||
{ "Mono", "Standard Monochrome card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_MONO },
|
||||
{ "3DL", "8, 16 and 24 bit color 3D Labs boards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_3DL },
|
||||
{ "8514", "8-bit (256 color) IBM 8514 or compatible card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_8514 },
|
||||
{ "AGX", "8-bit AGX card",
|
||||
@ -1018,8 +1020,6 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_S3V },
|
||||
{ "W32", "8-bit ET4000/W32, /W32i and /W32p cards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_W32 },
|
||||
{ "nest", "A nested server for testing purposes",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_NEST },
|
||||
{ "PC98", "Select an X server for a NEC PC98 [Submenu]",
|
||||
NULL, dmenuSubmenu, NULL, &MenuXF86SelectPC98Server, '>', ' ', '>', 0 },
|
||||
{ "All", "Select all of the above",
|
||||
|
@ -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.138 1999/04/21 07:22:37 obrien Exp $
|
||||
* $Id: dist.c,v 1.139 1999/05/05 11:34:01 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -152,6 +152,7 @@ static Distribution XF86ServerDistTable[] = {
|
||||
{ "PC98-Servers/X9WEP", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WEP, NULL },
|
||||
{ "PC98-Servers/X9WS", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WS, NULL },
|
||||
{ "PC98-Servers/X9WSN", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_9WSN, NULL },
|
||||
{ "Servers/X3DL", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_3DL, NULL },
|
||||
{ "Servers/X8514", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_8514, NULL },
|
||||
{ "Servers/XAGX", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_AGX, NULL },
|
||||
{ "Servers/XI128", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_I128, NULL },
|
||||
@ -165,7 +166,6 @@ static Distribution XF86ServerDistTable[] = {
|
||||
{ "Servers/XSVGA", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_SVGA, NULL },
|
||||
{ "Servers/XVG16", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_VGA16, NULL },
|
||||
{ "Servers/XW32", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_W32, NULL },
|
||||
{ "Xnest", "/usr/X11R6", &XF86ServerDists, DIST_XF86_SERVER_NEST, NULL },
|
||||
{ NULL },
|
||||
};
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: dist.h,v 1.33 1999/04/21 07:42:02 obrien Exp $ */
|
||||
/* $Id: dist.h,v 1.34 1999/05/07 20:31:34 jkh Exp $ */
|
||||
|
||||
#ifndef _DIST_H_INCLUDE
|
||||
#define _DIST_H_INCLUDE
|
||||
@ -100,7 +100,7 @@
|
||||
#define DIST_XF86_SERVER_SVGA 0x1000000
|
||||
#define DIST_XF86_SERVER_VGA16 0x2000000
|
||||
#define DIST_XF86_SERVER_W32 0x4000000
|
||||
#define DIST_XF86_SERVER_NEST 0x8000000
|
||||
#define DIST_XF86_SERVER_3DL 0x8000000
|
||||
#define DIST_XF86_SERVER_ALL 0xFFFFFFF
|
||||
#define DIST_XF86_FONTS 0x10000
|
||||
#define DIST_XF86_FONTS_MISC 0x0001
|
||||
|
@ -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.201 1999/05/12 06:58:18 jkh Exp $
|
||||
* $Id: menus.c,v 1.202 1999/05/12 22:06:00 jkh Exp $
|
||||
*
|
||||
* Copyright (c) 1995
|
||||
* Jordan Hubbard. All rights reserved.
|
||||
@ -998,6 +998,8 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_VGA16 },
|
||||
{ "Mono", "Standard Monochrome card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_MONO },
|
||||
{ "3DL", "8, 16 and 24 bit color 3D Labs boards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_3DL },
|
||||
{ "8514", "8-bit (256 color) IBM 8514 or compatible card",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_8514 },
|
||||
{ "AGX", "8-bit AGX card",
|
||||
@ -1018,8 +1020,6 @@ DMenu MenuXF86SelectServer = {
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_S3V },
|
||||
{ "W32", "8-bit ET4000/W32, /W32i and /W32p cards",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_W32 },
|
||||
{ "nest", "A nested server for testing purposes",
|
||||
dmenuFlagCheck, dmenuSetFlag, NULL, &XF86ServerDists, '[', 'X', ']', DIST_XF86_SERVER_NEST },
|
||||
{ "PC98", "Select an X server for a NEC PC98 [Submenu]",
|
||||
NULL, dmenuSubmenu, NULL, &MenuXF86SelectPC98Server, '>', ' ', '>', 0 },
|
||||
{ "All", "Select all of the above",
|
||||
|
Loading…
Reference in New Issue
Block a user