Re: Help compiling --with-ldap on Solaris 11 Express?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Dave Pooser <dave-pg(at)pooserville(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Help compiling --with-ldap on Solaris 11 Express?
Date: 2011-07-03 00:58:18
Message-ID: 24215.1309654698@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Dave Pooser <dave-pg(at)pooserville(dot)com> writes:
> On 7/2/11 7:16 PM, "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> The Oracle documentation avers that "-lldap" ought to be sufficient;
>> see for example ldap_simple_bind page in
>> http://download.oracle.com/docs/cd/E19963-01/pdf/821-1466.pdf
>> and even without that evidence it's hard to believe that they'd expect
>> calling applications to hardwire a library version number into their
>> build scripts.

> They don't; they cheat and symlink:
> root(at)testdb:/home/locadmin/postgresql-9.0.4# ls -l /usr/lib/libldap.so
> lrwxrwxrwx 1 root root 12 Jul 2 14:48 /usr/lib/libldap.so
> -> libldap.so.5

That's not a cheat; that's exactly the way everybody else does it.
That's how you get from a non-versioned library "-l" switch in a
makefile to a version-numbered reference in the resulting executable.
(The linker is supposed to dereference the symlink at link time.)

> But there's no such libldap_r.so symlink created by default.

Then you've got a broken package. Make the symlink by hand, and file a
bug report with Oracle.

>> If all else fails you could --disable-thread-safety.

> Is that safe to do on a server with a few dozen concurrent users?

The server doesn't care about this. It's only an issue for putting
libpq into multithreaded application programs.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Dave Pooser 2011-07-03 01:02:17 Re: Help compiling --with-ldap on Solaris 11 Express?
Previous Message Dave Pooser 2011-07-03 00:46:25 Re: Help compiling --with-ldap on Solaris 11 Express?