[comp.sys.amiga] DNet running under SUNOS4.0.3?

sinclair@oakhill.UUCP (Brian Sinclair) (07/15/90)

Hello all, 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.  I get an error while compiling the control.c file and the
nfs stuff, and when I try to run dnet it get an error stateing:

ld.so: __DYNAMIC version 0 not supported

Anyone have any ideas?

Thanks in advance  Please reply via Email to:

+=========================================================================+
| Motorola Inc.                            Brian Sinclair                 |
| Oakhill Test Systems and                 6501 William Cannon Drive West |
| Network Administrator                    Austin, Texas 78735            |
|                                          Maildrop: OE-28                |
|                                          (512) 891-3214                 |
|                                                                         |
| Internal Addr: sinclair@strider                                         |
| Internet Addr: ...!strider.sps.mot.com!sinclair                         |
| UUCP Address:  oakhill!strider!sinclair@cs.utexas.edu                   |
+=========================================================================+

tadguy@abcfd01.larc.nasa.gov (Tad Guy) (07/16/90)

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 ----