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

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

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"

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

2021-11-09 Thread Gordon Messmer
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" ___ CentOS mailing list

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

2021-11-09 Thread Steve Meier
Hi Kaushal, Am 2021-11-09 18:30, schrieb Kaushal Shriyan: # #cd Python-3.10.0 #*./configure LDFLAGS="-L/usr/lib64/openssl11"* #make altinstall # pip3.10 install mysql-connector WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.

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

2021-11-09 Thread Anand Buddhdev
On 09/11/2021 18:30, Kaushal Shriyan wrote: Kaushal, #cd Python-3.10.0 #*./configure LDFLAGS="-L/usr/lib64/openssl11"* You really are making no effort to understand how to compile packages on Linux. Steve told you that you might need to use LDFLAGS, but it is not the only option you have

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

2021-11-09 Thread Kaushal Shriyan
On Tue, Nov 9, 2021 at 9:26 PM Steve Meier wrote: > Hello Kaushal, > > the EPEL repository has OpenSSL 1.1 packages available: > > # yum install epel-release > # yum install openssl11 openssl11-libs openssl11-devel > > If you want to compile software with OpenSSL 1.1 instead of 1.0 > you may

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

2021-11-09 Thread Simon Matter
> Hello Kaushal, > > the EPEL repository has OpenSSL 1.1 packages available: > > # yum install epel-release > # yum install openssl11 openssl11-libs openssl11-devel > > If you want to compile software with OpenSSL 1.1 instead of 1.0 > you may have to set the proper path or environment variables >

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

2021-11-09 Thread Steve Meier
Hello Kaushal, the EPEL repository has OpenSSL 1.1 packages available: # yum install epel-release # yum install openssl11 openssl11-libs openssl11-devel If you want to compile software with OpenSSL 1.1 instead of 1.0 you may have to set the proper path or environment variables such as LDFLAGS.

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

2021-11-09 Thread Kaushal Shriyan
Hi, I have downloaded Python 3.10.0 on CentOS Linux release 7.9.2009 (Core). I have the below openssl and mariadb package installed on CentOS 7.9 # rpm -qa | grep openssl openssl-libs-1.0.2k-22.el7_9.x86_64 openssl-devel-1.0.2k-22.el7_9.x86_64 openssl-1.0.2k-22.el7_9.x86_64 #rpm -qa | grep