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