[3737] in Kerberos
Re: shared Krb5 libraries?
daemon@ATHENA.MIT.EDU (William Wanders)
Thu Aug 18 15:40:18 1994
To: kerberos@MIT.EDU
Date: Thu, 18 Aug 1994 17:13:16 GMT
From: wwanders@sci.kun.nl (William Wanders)
In <siIrnWy00UoQI4F=V6@andrew.cmu.edu> db74+@andrew.cmu.edu (Derrick J. Brashear) writes:
>Hi,
>I'm experimenting with the possibility of shared Krb5 libraries on my
>SPARC 1. Anyone else tried this sort of thing?
I helped someone a few week back to exactly do this; In our case it
was a FreeBSD machine. It was quite simple just recompile the libs
with the extra option '-fpic -DPIC'. This resultet in some nice
archives with which we did the following :
% mkdir obj
% cd obj
% ar x ../libkrb5.a
(% ar x ../libcom_err.a <- This we did only for libkrb5 !!!)
% rm __.SYMDEFS
% ld -Bshareable -o../libkrb5.so.5 *
% cd ..
% rm -r obj
We did this for all kerberos libs. We recompiled all programs
and had an extra 6MB Free space :)
I don't think it should be that much of a problem to do something
similar on a SPARC.