home *** CD-ROM | disk | FTP | other *** search
- diff -arcN server/ddx/sun/Imakefile cg9/ddx/sun/Imakefile
- *** server/ddx/sun/Imakefile Sun Sep 16 23:48:03 1990
- --- cg9/ddx/sun/Imakefile Sun Sep 16 23:44:03 1990
- ***************
- *** 9,14 ****
- --- 9,15 ----
- sunMouse.c \
- sunUtils.c \
- sunCG8C.c \
- + sunCG9C.c \
- sunKeyMap.c
-
- SRCS = $(SRCS1) kbd_mode.c constype.c
- ***************
- *** 23,28 ****
- --- 24,30 ----
- sunMouse.o \
- sunUtils.o \
- sunCG8C.o \
- + sunCG9C.o \
- sunKeyMap.o
-
- INCLUDES = -I. -I../mfb -I../mi -I../../include -I$(INCLUDESRC)
- diff -arcN server/ddx/sun/sunCG9C.c cg9/ddx/sun/sunCG9C.c
- *** server/ddx/sun/sunCG9C.c Tue Sep 25 21:50:30 1990
- --- cg9/ddx/sun/sunCG9C.c Sun Sep 16 23:44:05 1990
- ***************
- *** 444,450 ****
- int fd;
- struct fbtype fbType;
-
- ! if ((fd = sunOpenFrameBuffer(FBTYPE_MEMCOLOR, &fbType, index, fbNum,
- argc, argv)) < 0)
- return FALSE;
-
- --- 444,450 ----
- int fd;
- struct fbtype fbType;
-
- ! if ((fd = sunOpenFrameBuffer(FBTYPE_SUNROP_COLOR, &fbType, index, fbNum,
- argc, argv)) < 0)
- return FALSE;
-
- diff -arcN server/ddx/sun/sunInit.c cg9/ddx/sun/sunInit.c
- *** server/ddx/sun/sunInit.c Sun Sep 16 23:50:06 1990
- --- cg9/ddx/sun/sunInit.c Sun Sep 16 23:44:04 1990
- ***************
- *** 59,64 ****
- --- 59,65 ----
- extern int sunKbdProc();
- extern Bool sunBW2Probe(), sunBW2Create();
- extern Bool sunCG8CProbe(), sunCG8CCreate();
- + extern Bool sunCG9CProbe(), sunCG9CCreate();
- extern void ProcessInputEvents();
-
- extern void SetInputCheck();
- ***************
- *** 103,108 ****
- --- 104,110 ----
- sunFbDataRec sunFbData[] = {
- sunBW2Probe, "/dev/bwtwo0", sunBW2Create,
- sunCG8CProbe, "/dev/cgeight0", sunCG8CCreate,
- + sunCG9CProbe, "/dev/cgnine0", sunCG9CCreate,
- sunBW2Probe, "/dev/bwtwo0", sunBW2Create,
- };
-
-