Re: Build 8.3 with OpenSSL on CentOS 5.x?

Lists: pgsql-general
From: Karl Denninger <karl(at)denninger(dot)net>
To: pgsql-general(at)postgresql(dot)org
Subject: Build 8.3 with OpenSSL on CentOS 5.x?
Date: 2008-03-04 04:16:25
Message-ID: 47CCCD19.6090700@denninger.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Anyone know where the magic incantation is to find the crypto libraries?

I have found readline and zlib, but so far can't find crypto, and
without that, no SSL.....

--
Karl Denninger (karl(at)denninger(dot)net)
http://www.denninger.net


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Karl Denninger <karl(at)denninger(dot)net>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Build 8.3 with OpenSSL on CentOS 5.x?
Date: 2008-03-04 05:34:31
Message-ID: 6265.1204608871@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Karl Denninger <karl(at)denninger(dot)net> writes:
> Anyone know where the magic incantation is to find the crypto libraries?

If the RPM layout is the same as Fedora (which it surely oughta be)
openssl is what provides libcrypto.so.

regards, tom lane


From: Devrim GÜNDÜZ <devrim(at)CommandPrompt(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Karl Denninger <karl(at)denninger(dot)net>, pgsql-general(at)postgresql(dot)org
Subject: Re: Build 8.3 with OpenSSL on CentOS 5.x?
Date: 2008-03-04 05:56:47
Message-ID: 1204610207.920.156.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

Hi,

On Tue, 2008-03-04 at 00:34 -0500, Tom Lane wrote:
> Karl Denninger <karl(at)denninger(dot)net> writes:
> > Anyone know where the magic incantation is to find the crypto
> libraries?
>
> If the RPM layout is the same as Fedora (which it surely oughta be)
> openssl is what provides libcrypto.so.

I think you meant openssl-devel ?

Regards,
--
Devrim GÜNDÜZ , RHCE
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, ODBCng - http://www.commandprompt.com/


From: "Douglas McNaught" <doug(at)mcnaught(dot)org>
To: Devrim GÜNDÜZ <devrim(at)commandprompt(dot)com>
Cc: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>, "Karl Denninger" <karl(at)denninger(dot)net>, pgsql-general(at)postgresql(dot)org
Subject: Re: Build 8.3 with OpenSSL on CentOS 5.x?
Date: 2008-03-04 15:06:52
Message-ID: 5ded07e00803040706t42d494d7ne6a70fae175e026a@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-general

On 3/4/08, Devrim GÜNDÜZ <devrim(at)commandprompt(dot)com> wrote:
> Hi,
>
>
> On Tue, 2008-03-04 at 00:34 -0500, Tom Lane wrote:
> > Karl Denninger <karl(at)denninger(dot)net> writes:
> > > Anyone know where the magic incantation is to find the crypto
> > libraries?
> >
> > If the RPM layout is the same as Fedora (which it surely oughta be)
> > openssl is what provides libcrypto.so.
>
>
> I think you meant openssl-devel ?

That probably is needed if you're compiling against the library (since
it has the header files) but the actual runtime shared library is in
'openssl'--you don't need 'devel' if you're just installing binaries.

-Doug