From: | Heikki Linnakangas <hlinnaka(at)iki(dot)fi> |
---|---|
To: | "Jensen, David E" <djensen8(at)dxc(dot)com>, "pgsql-odbc(at)postgresql(dot)org" <pgsql-odbc(at)postgresql(dot)org> |
Subject: | Re: Build ODBC Drivers for Solaris with TLS support |
Date: | 2020-10-23 13:22:09 |
Message-ID: | 4cafc5c6-5546-e731-3ca9-d0c6eabfb1b2@iki.fi |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-odbc |
On 23/10/2020 15:19, Jensen, David E wrote:
> Heikki,
>
> Thank you for the quick response. To build the ODBC drivers, I used the package from the PostgreSQL site for solaris10-sparc64 - https://ftp.postgresql.org/pub/binary/v11.9/solaris/solaris10/sparc/postgresql-11.9-S10.sparc-64.tar.bz2
>
> After I send this message to the list I started wondering about the PG install itself, so I guess I was on the right track. Are those packages not built with SSL support?
I don't know, unfortunately. Does Solaris have 'ldd' or similar, to
check what libraries libpq.so depends on? On my Linux system:
$ ldd <path to pgsql installation>/lib/libpq.so
linux-vdso.so.1 (0x00007ffef63f6000)
libssl.so.1.1 => /usr/lib/x86_64-linux-gnu/libssl.so.1.1
(0x00007facf52d9000)
libcrypto.so.1.1 => /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
(0x00007facf4ff0000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007facf4fcf000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007facf4e0e000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007facf4e09000)
/lib64/ld-linux-x86-64.so.2 (0x00007facf53e7000)
The libssl and libcrypto dependencies come from building with OpenSSL.
- Heikki
From | Date | Subject | |
---|---|---|---|
Next Message | Jensen, David E | 2020-10-23 14:01:03 | Re: Build ODBC Drivers for Solaris with TLS support |
Previous Message | Jensen, David E | 2020-10-23 12:19:53 | RE: Build ODBC Drivers for Solaris with TLS support |