[2050] in Kerberos_V5_Development
Re: MacLinux compile problems
daemon@ATHENA.MIT.EDU (Mark Eichin)
Sun Dec 1 23:08:03 1996
To: Kev <klmitch@MIT.EDU>
Cc: krbdev@MIT.EDU
From: Mark Eichin <eichin@MIT.EDU>
Date: 01 Dec 1996 23:07:53 -0500
In-Reply-To: Kev's message of Sun, 01 Dec 1996 04:07:09 EST
yeah, I fixed that on gene-simmons. Just link that one program with
-uclnt_init or something like that... the trick is to copy libc.a
(which is static), nm -por libc.a | grep xdr-foo [the symbol in the
error], ar dv libc.a that-object.o, link again. Repeat until you have
undefs and not collisions; then -u that symbol so that the linker
pulls it in from gssrpc instead of from libc. (This is a side effect
of libc having NIS in it but being static, and the difference in the
order of resolution of symbols for static vs. dynamic libs...)