Path: utzoo!attcan!uunet!ginosko!gem.mps.ohio-state.edu!tut.cis.ohio-state.edu!rutgers!aramis.rutgers.edu!topaz.rutgers.edu!elkins From: elkins@topaz.rutgers.edu (George Elkins) Newsgroups: comp.sys.sgi Subject: Re: kermit for IRIS (really easy) Summary: diffs to ckermit files for Iris 4D Message-ID: Date: 22 Jul 89 02:54:31 GMT References: <595@noether.UUCP> Organization: Rutgers Univ., New Brunswick, N.J. Lines: 33 In article <595@noether.UUCP>, root@noether.UUCP (Super User) writes: > If you take straight Ckermit from uunet or something, then you can compile > it with the SYSTEM V release 3 flags and it will work just fine. You have > to run through the configuration options a a few things: for example > the lock directory is in /usr/spool/locks instead of /usr/spool/uucp, Here is the change I made to the ckermit files. (Note that Makefile is ckuker.mak after renaming appropriately.) The files were originally from uunet.uu.edu. I was compiling this on an Iris 4D/120 GTX. :::::::::::::: Makefile.diff :::::::::::::: 135,141d134 < # For Iris 4D, use "make sys5r3", but < # 1. Remove $(LNKFLAGS) from the line that links wart to < # produce an executable from ckwart.o. The -i option < # causes wart to dump core when executed. < # 2. Change the string "char *lockdir = /usr/spool/uucp" to < # "char *lockdir = /usr/spool/locks" in the file ckutio.c. < # 209c202 < $(CC) -o wart ckwart.o --- > $(CC) $(LNKFLAGS) -o wart ckwart.o :::::::::::::: ckutio.c.diff :::::::::::::: 793c793 < char *lockdir = "/usr/spool/locks"; --- > char *lockdir = "/usr/spool/uucp";