Re: [CentOS] Install OpenSSL 1.1.1 on CentOS Linux release 7.9.2009 (Core).

2021-11-13 Thread Gordon Messmer
On 11/13/21 09:02, Jonathan Billings wrote: While you might be able to compile the software with those flags, you'll not be able to run anything with libraries out of the standard search path. And you don't want to add this openssl to the standard search path, because it will break packaged soft

Re: [CentOS] Install OpenSSL 1.1.1 on CentOS Linux release 7.9.2009 (Core).

2021-11-13 Thread Jonathan Billings
On Sat, Nov 13, 2021 at 12:02:24PM -0500, Jonathan Billings wrote: > You'll want to add to CFLAGS="-Wl,-rpath,/usr/lib64/openssl11", so the > linker adds the RPATH to the executable. The alternative is to set $LD_LIBRARY_PATH, of course, but that is often something that can pollute the environment

Re: [CentOS] Install OpenSSL 1.1.1 on CentOS Linux release 7.9.2009 (Core).

2021-11-13 Thread Jonathan Billings
On Tue, Nov 09, 2021 at 06:17:32PM -0800, Gordon Messmer wrote: > On 11/9/21 09:30, Kaushal Shriyan wrote: > > #*./configure LDFLAGS="-L/usr/lib64/openssl11"* > > > I believe that at a minimum, you would need: > > ./configure LDFLAGS="-L/usr/lib64/openssl11" > CFLAGS="-I/usr/include/openssl11" >