Re: SSL tests fail on OpenSSL v3.2.0

Tristan Partin <tristan@neon.tech>

From: "Tristan Partin" <tristan@neon.tech>
To: "Michael Paquier" <michael@paquier.xyz>
Cc: "Nazir Bilal Yavuz" <byavuz81@gmail.com>, "Andres Freund" <andres@anarazel.de>, "Bo Anderson" <mail@boanderson.me>, "pgsql-hackers" <pgsql-hackers@postgresql.org>
Date: 2023-11-28T00:00:00Z
Lists: pgsql-hackers

Attachments

On Mon Nov 27, 2023 at 5:53 PM CST, Michael Paquier wrote:
> On Mon, Nov 27, 2023 at 12:33:49PM -0600, Tristan Partin wrote:
> > -#ifndef HAVE_BIO_GET_DATA
> > -#define BIO_get_data(bio) (bio->ptr)
> > -#define BIO_set_data(bio, data) (bio->ptr = data)
> > -#endif
>
> Shouldn't this patch do a refresh of configure.ac and remove the check
> on BIO_get_data() if HAVE_BIO_GET_DATA is gone?

See the attached v3. I am unfamiliar with autotools, so I just hand 
edited the configure.ac script instead of whatever "refresh" means.

-- 
Tristan Partin
Neon (https://neon.tech)

Commits

  1. Use BIO_{get,set}_app_data instead of BIO_{get,set}_data.