diff options
author | jperkin <jperkin@pkgsrc.org> | 2021-11-09 12:13:02 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2021-11-09 12:13:02 +0000 |
commit | a2adb22a434d4c2517f2dcead89e2f269c0c30cb (patch) | |
tree | 60708c68860f6e2ebac24f84e0391a61951665b8 /lang/ruby26-base | |
parent | 692a0937764027cf746e6fc43eb65a17a5a971cb (diff) | |
download | pkgsrc-a2adb22a434d4c2517f2dcead89e2f269c0c30cb.tar.gz |
ruby26-base: Support OpenSSL 3.
Diffstat (limited to 'lang/ruby26-base')
-rw-r--r-- | lang/ruby26-base/distinfo | 3 | ||||
-rw-r--r-- | lang/ruby26-base/patches/patch-ext_openssl_ossl__pkey__rsa.c | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/lang/ruby26-base/distinfo b/lang/ruby26-base/distinfo index d452047f35e..a940681163b 100644 --- a/lang/ruby26-base/distinfo +++ b/lang/ruby26-base/distinfo @@ -1,10 +1,11 @@ -$NetBSD: distinfo,v 1.13 2021/10/26 10:51:54 nia Exp $ +$NetBSD: distinfo,v 1.14 2021/11/09 12:13:02 jperkin Exp $ BLAKE2s (ruby-2.6.8.tar.xz) = b18e88618ba10d1f53894bea68bae833e842597a62114e3e2bc0fb20b56c62f3 SHA512 (ruby-2.6.8.tar.xz) = d040ad2238523587d8f356fcb796b8b6ad7f8caff7dd6df09e3f7efcbfa0369e33600e78c7f2bc713ae77c040757cce5c4fec223cb9070209f2bf741899c556d Size (ruby-2.6.8.tar.xz) = 11599488 bytes SHA1 (patch-configure) = ccfad7b5e35e87308e187e6c5fb3ffea57ad763d SHA1 (patch-ext_dbm_extconf.rb) = c998f8735db54b1ae2bc8b6caa359ce88bc7a45b +SHA1 (patch-ext_openssl_ossl__pkey__rsa.c) = 707ab908b6d72e386230b3530700ce861a3754db SHA1 (patch-lib_mkmf.rb) = 75d2261a8282a00cd5f811a5e629302d1667207e SHA1 (patch-lib_rdoc_encoding.rb) = 0e82d2942d9bfcb67dc7c994889d7bc5ec2ae85a SHA1 (patch-lib_rdoc_ri_driver.rb) = f4d3e59e35b608acd4edc17916142c7f033e6198 diff --git a/lang/ruby26-base/patches/patch-ext_openssl_ossl__pkey__rsa.c b/lang/ruby26-base/patches/patch-ext_openssl_ossl__pkey__rsa.c new file mode 100644 index 00000000000..0383e23af9b --- /dev/null +++ b/lang/ruby26-base/patches/patch-ext_openssl_ossl__pkey__rsa.c @@ -0,0 +1,16 @@ +$NetBSD: patch-ext_openssl_ossl__pkey__rsa.c,v 1.1 2021/11/09 12:13:03 jperkin Exp $ + +Support OpenSSL 3. + +--- ext/openssl/ossl_pkey_rsa.c.orig 2021-07-07 10:38:58.000000000 +0000 ++++ ext/openssl/ossl_pkey_rsa.c +@@ -939,7 +939,9 @@ Init_ossl_rsa(void) + rb_define_method(cRSA, "params", ossl_rsa_get_params, 0); + + DefRSAConst(PKCS1_PADDING); ++#ifdef SSLV23_PADDING + DefRSAConst(SSLV23_PADDING); ++#endif + DefRSAConst(NO_PADDING); + DefRSAConst(PKCS1_OAEP_PADDING); + |