Path: utzoo!attcan!uunet!cs.utexas.edu!usc!apple!brutus.cs.uiuc.edu!tut.cis.ohio-state.edu!bloom-beacon!POSEUR.JPL.NASA.GOV!earle From: earle@POSEUR.JPL.NASA.GOV (Greg Earle - Sun JPL on-site Software Support) Newsgroups: comp.windows.x Subject: Re: X11 R3 on Sun SPARCstation 1 with CG3 color board? Message-ID: <8907280804.AA08978@poseur.jpl.nasa.gov> Date: 28 Jul 89 08:04:22 GMT Sender: daemon@bloom-beacon.MIT.EDU Organization: The Internet Lines: 19 >Has anyone gotten X11 R3 to run on the Sun SPARCstation 1 with a CG3 color >board ? Are there patches available to do this? I suspect that if you examine server/ddx/sun/sunCG3C.c, you will find that the vast majority of the code assumes that it is running only on a Sun386i. If you change all the instances of `#ifdef sun386' to `#if defined(sun386) || defined(sun4c)' then you might get lucky, it might work just like that without any other code changes. Note that this depends on `sun4c' being unique to the SPARCStation-1 C preprocessor; I'm not sure if this is a pre-defined symbol or not. If it isn't, you might have to fall back on using `defined(sun4)' instead. Not perfect, but you do what you gotta do. - Greg Earle earle@poseur.JPL.NASA.GOV Disclaimer: These are my own thoughts and in no way represent my employer.