Re: [PATCH 14/24] nodejs: use -fpermissive
Martin Jansa
This doesn't seem to cover nodejs-native build where it still fails with: | ../src/node_crypto.cc:4585:37: error: invalid conversion from ‘const dsa_st*’ to ‘DSA*’ {aka ‘dsa_st*’} [-fpermissive] | 4585 | DSA* dsa_key = EVP_PKEY_get0_DSA(pkey.get()); | | ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~ | | | | | const dsa_st* | ../src/node_crypto.cc:4587:34: warning: ‘const BIGNUM* DSA_get0_q(const DSA*)’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] | 4587 | bits = BN_num_bits(DSA_get0_q(dsa_key)); | | ~~~~~~~~~~^~~~~~~~~ On Mon, Oct 11, 2021 at 8:42 PM Alexander Kanavin <alex.kanavin@...> wrote: This resolves openssl 3.x errors until upstream addresses them properly. |
|