home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume10 / sun.serpatch / part01 / cg9.diff next >
Encoding:
Text File  |  1990-10-25  |  1.8 KB  |  67 lines

  1. diff -arcN server/ddx/sun/Imakefile cg9/ddx/sun/Imakefile
  2. *** server/ddx/sun/Imakefile    Sun Sep 16 23:48:03 1990
  3. --- cg9/ddx/sun/Imakefile    Sun Sep 16 23:44:03 1990
  4. ***************
  5. *** 9,14 ****
  6. --- 9,15 ----
  7.       sunMouse.c \
  8.       sunUtils.c \
  9.       sunCG8C.c \
  10. +     sunCG9C.c \
  11.       sunKeyMap.c
  12.   
  13.   SRCS =    $(SRCS1) kbd_mode.c constype.c 
  14. ***************
  15. *** 23,28 ****
  16. --- 24,30 ----
  17.       sunMouse.o \
  18.       sunUtils.o \
  19.       sunCG8C.o \
  20. +     sunCG9C.o \
  21.       sunKeyMap.o
  22.   
  23.      INCLUDES = -I. -I../mfb -I../mi -I../../include -I$(INCLUDESRC)
  24. diff -arcN server/ddx/sun/sunCG9C.c cg9/ddx/sun/sunCG9C.c
  25. *** server/ddx/sun/sunCG9C.c    Tue Sep 25 21:50:30 1990
  26. --- cg9/ddx/sun/sunCG9C.c    Sun Sep 16 23:44:05 1990
  27. ***************
  28. *** 444,450 ****
  29.       int         fd;
  30.       struct fbtype fbType;
  31.   
  32. !     if ((fd = sunOpenFrameBuffer(FBTYPE_MEMCOLOR, &fbType, index, fbNum,
  33.                    argc, argv)) < 0)
  34.       return FALSE;
  35.   
  36. --- 444,450 ----
  37.       int         fd;
  38.       struct fbtype fbType;
  39.   
  40. !     if ((fd = sunOpenFrameBuffer(FBTYPE_SUNROP_COLOR, &fbType, index, fbNum,
  41.                    argc, argv)) < 0)
  42.       return FALSE;
  43.   
  44. diff -arcN server/ddx/sun/sunInit.c cg9/ddx/sun/sunInit.c
  45. *** server/ddx/sun/sunInit.c    Sun Sep 16 23:50:06 1990
  46. --- cg9/ddx/sun/sunInit.c    Sun Sep 16 23:44:04 1990
  47. ***************
  48. *** 59,64 ****
  49. --- 59,65 ----
  50.   extern int sunKbdProc();
  51.   extern Bool sunBW2Probe(), sunBW2Create();
  52.   extern Bool sunCG8CProbe(), sunCG8CCreate();
  53. + extern Bool sunCG9CProbe(), sunCG9CCreate();
  54.   extern void ProcessInputEvents();
  55.   
  56.   extern void SetInputCheck();
  57. ***************
  58. *** 103,108 ****
  59. --- 104,110 ----
  60.   sunFbDataRec sunFbData[] = {
  61.       sunBW2Probe,      "/dev/bwtwo0",        sunBW2Create,
  62.       sunCG8CProbe,      "/dev/cgeight0",    sunCG8CCreate,
  63. +     sunCG9CProbe,      "/dev/cgnine0",        sunCG9CCreate,
  64.       sunBW2Probe,      "/dev/bwtwo0",        sunBW2Create,
  65.   };
  66.   
  67.