KERBEROS 1.5 KB

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