[1497] in Kerberos
kerberos V4 for SunOS 4.1.1
daemon@ATHENA.MIT.EDU (Bill Kirkland)
Wed Aug 7 19:18:33 1991
Date: Wed, 7 Aug 91 16:26:56 MDT
From: kirkland@aspen.den.mmc.com (Bill Kirkland)
To: kerberos@ATHENA.MIT.EDU
> I got the version 4 source from athena-dist.mit.edu, and tried to install
> it on a Sun 4/300 running SunOS 4.1.1. It simply would not build. I tried
> every compiler on the blasted box, and kept getting errors along this line:
>
> ****************************************************************************
> ### Now computing dependencies
> cd util/ss; make DEPEND=../.././util/makedepend/makedepend depend; make
> all
> ### Now computing dependencies
> ./make_commands std_requests.ct
> ld: cmd16086.z: ld: can't mixed -r with -Bstatic or -A flag
> cp: /tmp/cmd16086.o: No such file or directory
> ****************************************************************************
I had the same problem, and fixed it by removing the '-n' option to 'ld' in
the file /mit/kerberos/obj/util/ss/make_commands.c, which is used to create
the executables.
/* execl("/bin/ld", "ld", "-o", o_file+5, "-s", "-r", "-n", z_file+5, 0); */
execl("/bin/ld", "ld", "-o", o_file+5, "-s", "-r", z_file+5, 0);
I am now having difficulties with "kinit" if you discover the solution before
me... please let me know... Thanks.
Bill Kirkland (kirkland@aspen.den.mmc.com)