glibc-2.1.3-crypt.diff 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --- glibc-2.1.3.orig/crypt/sysdeps/unix/Makefile 1997-03-05 00:33:59 +0000
  2. +++ glibc-2.1.3/crypt/sysdeps/unix/Makefile 2000-06-11 03:13:41 +0000
  3. @@ -1,4 +1,4 @@
  4. ifeq ($(subdir),md5-crypt)
  5. -libcrypt-routines += crypt crypt_util
  6. -dont_distribute += crypt.c crypt_util.c
  7. +libcrypt-routines += crypt crypt_util crypt_blowfish x86 crypt_gensalt wrapper
  8. +dont_distribute += crypt.c crypt_util.c crypt_blowfish.c x86.S crypt_gensalt.c wrapper.c
  9. endif
  10. --- glibc-2.1.3.orig/crypt/sysdeps/unix/crypt-entry.c 1998-12-10 12:49:04 +0000
  11. +++ glibc-2.1.3/crypt/sysdeps/unix/crypt-entry.c 2000-06-11 03:14:57 +0000
  12. @@ -70,7 +70,7 @@ extern struct crypt_data _ufc_foobar;
  13. */
  14. char *
  15. -__crypt_r (key, salt, data)
  16. +__des_crypt_r (key, salt, data)
  17. const char *key;
  18. const char *salt;
  19. struct crypt_data * __restrict data;
  20. @@ -115,6 +115,7 @@ __crypt_r (key, salt, data)
  21. _ufc_output_conversion_r (res[0], res[1], salt, data);
  22. return data->crypt_3_buf;
  23. }
  24. +#if 0
  25. weak_alias (__crypt_r, crypt_r)
  26. char *
  27. @@ -147,3 +148,4 @@ __fcrypt (key, salt)
  28. return crypt (key, salt);
  29. }
  30. #endif
  31. +#endif
  32. --- glibc-2.1.3.orig/md5-crypt/Makefile 1998-07-02 22:46:47 +0000
  33. +++ glibc-2.1.3/md5-crypt/Makefile 2000-06-11 03:12:34 +0000
  34. @@ -21,7 +21,7 @@
  35. #
  36. subdir := md5-crypt
  37. -headers := crypt.h
  38. +headers := crypt.h gnu-crypt.h ow-crypt.h
  39. distribute := md5.h
  40. --- glibc-2.1.3.orig/md5-crypt/Versions 1998-07-02 22:32:07 +0000
  41. +++ glibc-2.1.3/md5-crypt/Versions 2000-06-11 09:11:03 +0000
  42. @@ -1,5 +1,6 @@
  43. libcrypt {
  44. GLIBC_2.0 {
  45. crypt; crypt_r; encrypt; encrypt_r; fcrypt; setkey; setkey_r;
  46. + crypt_rn; crypt_ra; crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
  47. }
  48. }