Re: add support for the old naming libs convention on windows (ssleay32.lib and libeay32.lib)

2025-02-09 Thread Darek Ślusarczyk
On Fri, Feb 7, 2025 at 3:14 PM Daniel Gustafsson wrote: > > On 9 Jan 2025, at 13:50, Daniel Gustafsson wrote: > > > >> On 7 Jan 2025, at 19:25, Darek Ślusarczyk > wrote: > > > >> Thanks for reviewing the patch - I've added a few changes and it lo

Re: add support for the old naming libs convention on windows (ssleay32.lib and libeay32.lib)

2025-01-09 Thread Darek Ślusarczyk
Hi, Thanks for reviewing the patch - I've added a few changes and it looks as follows: diff --git a/meson.build b/meson.build index e5ce437a5c7..37d4e9ca741 100644 --- a/meson.build +++ b/meson.build @@ -1343,14 +1343,41 @@ if sslopt in ['auto', 'openssl'] # via library + headers if not ss

Re: add support for the old naming libs convention on windows (ssleay32.lib and libeay32.lib)

2024-12-09 Thread Darek Ślusarczyk
On Wed, Dec 4, 2024 at 3:48 PM Daniel Gustafsson wrote: > > On 2 Dec 2024, at 22:12, Darek Ślusarczyk > wrote: > [...] > > -ssl_lib = cc.find_library('ssl', > > +ssl_lib = cc.find_library(['ssl', 'ssleay32'], > > I'

add support for the old naming libs convention on windows (ssleay32.lib and libeay32.lib)

2024-12-03 Thread Darek Ślusarczyk
Hi, Summary of Changes: According to the postgresql-17 requirements https://www.postgresql.org/docs/17/install-requirements.html the minimum required version of openssl is 1.0.2. In that version, the naming convention on windows is still ssleay32.[lib|dll] and libeay32.[lib|dll] instead of libssl