mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.1 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/michiel/ruby/openssl.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2006 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./ext/digest/md5/md5ossl.c.orig 2005-07-18 16:11:09.000000000 +0200
  20. +++ ./ext/digest/md5/md5ossl.c 2005-07-18 16:23:18.000000000 +0200
  21. @@ -1,5 +1,7 @@
  22. /* $Id: md5ossl.c,v 1.2 2003/01/06 11:47:53 knu Exp $ */
  23. +#include <sys/types.h>
  24. +
  25. #include "md5ossl.h"
  26. #include <sys/types.h>
  27. #include <stdio.h>
  28. --- ./ext/digest/sha1/sha1ossl.c.orig 2005-07-18 16:11:45.000000000 +0200
  29. +++ ./ext/digest/sha1/sha1ossl.c 2005-07-18 16:23:32.000000000 +0200
  30. @@ -1,5 +1,7 @@
  31. /* $Id: sha1ossl.c,v 1.1 2002/09/26 17:44:33 knu Exp $ */
  32. +#include <sys/types.h>
  33. +
  34. #include "sha1ossl.h"
  35. #include "defs.h"
  36. #include <assert.h>
  37. --- ./ext/digest/rmd160/rmd160ossl.c.orig 2005-07-18 16:12:11.000000000 +0200
  38. +++ ./ext/digest/rmd160/rmd160ossl.c 2005-07-18 16:23:26.000000000 +0200
  39. @@ -1,5 +1,7 @@
  40. /* $Id: rmd160ossl.c,v 1.1 2002/09/26 17:26:46 knu Exp $ */
  41. +#include <sys/types.h>
  42. +
  43. #include "rmd160ossl.h"
  44. #include "defs.h"
  45. #include <assert.h>
  46. --- ./ext/openssl/ossl_x509store.c.orig 2005-07-18 16:13:49.000000000 +0200
  47. +++ ./ext/openssl/ossl_x509store.c 2005-07-18 16:22:03.000000000 +0200
  48. @@ -538,7 +538,7 @@
  49. if(NIL_P(time)) {
  50. GetX509StCtx(self, store);
  51. - store->flags &= ~X509_V_FLAG_USE_CHECK_TIME;
  52. + store->param->flags &= ~X509_V_FLAG_USE_CHECK_TIME;
  53. }
  54. else {
  55. long t = NUM2LONG(rb_Integer(time));