Path: utzoo!utgpu!watserv1!watmath!att!dptg!ulysses!andante!mit-eddie!bu.edu!rpi!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!xanth!abcfd01.larc.nasa.gov!tadguy From: tadguy@abcfd01.larc.nasa.gov (Tad Guy) Newsgroups: comp.sys.amiga Subject: Re: DNet running under SUNOS4.0.3? Message-ID: Date: 16 Jul 90 14:42:45 GMT References: <3530@strider.oakhill.UUCP> Sender: news@cs.odu.edu Organization: NASA/Langley Research Center, Hampton, VA Lines: 49 In-reply-to: sinclair@oakhill.UUCP's message of 14 Jul 90 21:40:36 GMT In article <3530@strider.oakhill.UUCP> sinclair@oakhill.UUCP (Brian Sinclair) writes: > I have been trying to get DNET running on a sun 3/80 under SUN OS > 4.0.3 using version 2.13. I know the docs say it does not run under > 4.0.3, but I was just wondering if any had gotten around that > problem yet. DNet 2.13 does work under SunOS 4.0.3c. I used the copy that was posted to comp.binaries.amiga/comp.sources.amiga not too long ago. I made a couple of minor changes. The first makes the fterm's shell a normal subshell (instead of a login shell). This means only my .cshrc will be read for each window instead of both .cshrc and .login. The second change is a minor fix to the server Makefile (it has two rulesets for the same object). Diffs enclosed. ...tad *** /tmp/,RCSt1a01936 Mon Jul 16 10:42:08 1990 --- unix/dnet/internal.c Sun Jun 24 20:00:48 1990 *************** *** 122,128 **** if (!home) home = "."; chdir(home); ! execl(shell, "-fshell", NULL); perror(shell); } _exit(1); --- 122,128 ---- if (!home) home = "."; chdir(home); ! execl(shell, "fshell", NULL); perror(shell); } _exit(1); *** /tmp/,RCSt1a01939 Mon Jul 16 10:42:11 1990 --- unix/server/Makefile Sun Jun 24 18:57:57 1990 *************** *** 24,32 **** $(BIN)/sgcopy: sgcopy.o cc sgcopy.o $(NETLIB) -o $(BIN)/sgcopy - $(BIN)/snfs: snfs.o - cc snfs.o $(NETLIB) -o $(BIN)/snfs - $(BIN)/sshell: sshell.o cc sshell.o $(NETLIB) -o $(BIN)/sshell --- 24,29 ----