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