Path: utzoo!utgpu!watmath!uunet!tut.cis.ohio-state.edu!mipon3.intel.com!toms From: toms@mipon3.intel.com Newsgroups: gnu.utils.bug Subject: GNU Make 3.27 Fixs to compile on Ultrix and Sun386i Message-ID: <8901262145.AA17203@mipon3> Date: 26 Jan 89 20:45:58 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 67 I made two changes to GNU Make 3.27 to compile w/ cc (Not GNU cc) on a Vax780 Ultrix machine and a Sun386i. For the Sun386i I had to put () around the object of a sizeof function in arscan.c. For Ultrix I had to modify a include from to just in commands.c. Patch included at end of mail. --------------------------------------------------------------------- Tom Shott toms@omepd.intel.com Intel {verdix,tektronix,ogccse}!omepd!mipon3!toms M/S JF1-58 2111 NE 25th Ave. Hillsboro, OR 97123 (503) 696-4520 "Better living through Silicon" --------------------------------------------------------------------- *** arscan.c~ Mon Dec 12 15:37:26 1988 --- arscan.c Wed Jan 25 17:08:10 1989 *************** *** 186,193 **** #ifdef SARMAG register long int member_offset = SARMAG; #else ! register long int member_offset = sizeof int; ! #endif while (1) { --- 186,193 ---- #ifdef SARMAG register long int member_offset = SARMAG; #else ! register long int member_offset = sizeof(int); /* jts3 added () */ ! #endif while (1) { *** commands.c~ Mon Dec 12 15:37:09 1988 --- commands.c Wed Jan 25 17:08:19 1989 *************** *** 38,44 **** #include #include ! #include #endif /* USG */ --- 38,45 ---- #include #include ! /* #include jts3 changed to no sys, like arscan */ ! #include #endif /* USG */