1*c9496f6bSchristos [ This is an old file, I don't know if it is true anymore 2*c9496f6bSchristos but I will leave the file here - eay 21/11/95 ] 3*c9496f6bSchristos 4*c9496f6bSchristosTo use this library with Bones (kerberos without DES): 5*c9496f6bSchristos1) Get my modified Bones - eBones. It can be found on 6*c9496f6bSchristos gondwana.ecr.mu.oz.au (128.250.1.63) /pub/athena/eBones-p9.tar.Z 7*c9496f6bSchristos and 8*c9496f6bSchristos nic.funet.fi (128.214.6.100) /pub/unix/security/Kerberos/eBones-p9.tar.Z 9*c9496f6bSchristos 10*c9496f6bSchristos2) Unpack this library in src/lib/des, makeing sure it is version 11*c9496f6bSchristos 3.00 or greater (libdes.tar.93-10-07.Z). This versions differences 12*c9496f6bSchristos from the version in comp.sources.misc volume 29 patchlevel2. 13*c9496f6bSchristos The primarily difference is that it should compile under kerberos :-). 14*c9496f6bSchristos It can be found at. 15*c9496f6bSchristos ftp.psy.uq.oz.au (130.102.32.1) /pub/DES/libdes.tar.93-10-07.Z 16*c9496f6bSchristos 17*c9496f6bSchristosNow do a normal kerberos build and things should work. 18*c9496f6bSchristos 19*c9496f6bSchristosOne problem I found when I was build on my local sun. 20*c9496f6bSchristos--- 21*c9496f6bSchristosFor sunOS 4.1.1 apply the following patch to src/util/ss/make_commands.c 22*c9496f6bSchristos 23*c9496f6bSchristos*** make_commands.c.orig Fri Jul 3 04:18:35 1987 24*c9496f6bSchristos--- make_commands.c Wed May 20 08:47:42 1992 25*c9496f6bSchristos*************** 26*c9496f6bSchristos*** 98,104 **** 27*c9496f6bSchristos if (!rename(o_file, z_file)) { 28*c9496f6bSchristos if (!vfork()) { 29*c9496f6bSchristos chdir("/tmp"); 30*c9496f6bSchristos! execl("/bin/ld", "ld", "-o", o_file+5, "-s", "-r", "-n", 31*c9496f6bSchristos z_file+5, 0); 32*c9496f6bSchristos perror("/bin/ld"); 33*c9496f6bSchristos _exit(1); 34*c9496f6bSchristos--- 98,104 ---- 35*c9496f6bSchristos if (!rename(o_file, z_file)) { 36*c9496f6bSchristos if (!vfork()) { 37*c9496f6bSchristos chdir("/tmp"); 38*c9496f6bSchristos! execl("/bin/ld", "ld", "-o", o_file+5, "-s", "-r", 39*c9496f6bSchristos z_file+5, 0); 40*c9496f6bSchristos perror("/bin/ld"); 41*c9496f6bSchristos _exit(1); 42