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