[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: Could not locate TLS/SSL package
At 10:38 AM 9/27/00 +0800, Ronald Warner wrote:
>I am installing openldap-2.0.4 on redhat6.2
>
>openssl0.9.5a is installed in /usr/local/ssl and ssl.h is in
>/usr/local/ssl/include/openssl/
>
>for configure, I entered the following:
>env CPPFLAGS="-I/usr/local/ssl/include/openssl" LIBS="-L/usr/local/ssl/lib" \
> ./configure --prefix=/usr/local/ldap --with-tls --enable-crypt --enable-wrappers
If you installed SSL with a prefix of /usr/local/ssl then you
need to
env CPPFLAGS="-I/usr/local/ssl/include" LDFLAGS="-L/usr/local/ssl/lib" \
./configure
Note the use of include path doesn't include the openssl subdir
and LDFLAGS instead of LIBS.
Kurt