Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!uunet!munnari.oz.au!mel.dit.csiro.au!yarra!technix.oz.au!technix.oz.au!ahl From: ahl@technix.oz.au (Tony Landells) Newsgroups: comp.text.tex Subject: Re: TeX with SunWindows Message-ID: Date: 27 Aug 90 13:50:11 GMT References: <1320@umriscc.isc.umr.edu> Sender: ahl@technix.oz.au (Tony Landells) Organization: TechNIX Consulting Services, Melbourne, Australia Lines: 15 In-Reply-To: jmd@ee.umr.edu's message of 23 Aug 90 22:08:52 GMT I had this problem when I used gcc to build everything because mpr_static() uses the old method of performing string concatenation. If this is your problem, then you can try using the -traditional flag, though I put the following in before the sun include files: /* the following is to make gcc swallow mpr_static */ #ifdef __GNUC__ #define CAT(x, y) x ## y #endif Note that this must go *before* the includes, otherwise you'll also need to #undef CAT(x, y)... Hope this helps, Tony Landells.