[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: LDAP w/ SSL support
At 10:13 AM 2001-09-01, Averroes wrote:
>Hi All,
>
>I am new in OpenLDAP ;-), and I am not coder :-(
>
>I want to include SSL support in LDAP server at a compile time.
>
>I know that this specificity have to be include before
>the "./configure " argument.
>
>my openssl installation directories is:
>
>/usr/local/ssl
>/usr/local/ssl/lib/
>/usr/local/ssl/include/
>/usr/local/ssl/include/openssl
>But How...?
Well, that kind of depends on your operating system and
C compiler. On many systems, something like the following
should work:
env CPPFLAGS=-I/usr/local/ssl/include LDFLAGS=-L/usr/local/ssl/lib \
./configure --with-tls
If you system uses dynamically liked libraries, additional
flags may be needed.
Kurt