This question probably belongs more in openssl-users, not openssl-dev. More
likely, it
belongs in [EMAIL PROTECTED] But since I'm on all of these
lists anyway,
I'll answer here:
The Solaris compiler and linker don't know to look in /usr/local/ssl, so you
have to tell
them explicitly to do so before running openldap's configure script. You do
this by
setting the CPPFLAGS and LDFLAGS environment variables before running
configure:
setenv CPPFLAGS -I/usr/local/ssl/include
setenv LDFLAGS -L/usr/local/ssl/lib
(I use tcsh, thus the setenv commands. For Bourne shell and similar, use the
appropriate
assignments instead:
CPPFLAGS=-I/usr/local/ssl/include; export CPPFLAGS
LDFLAGS=-L/usr/local/ssl/lib; export LDFLAGS
-- Howard Chu
Chief Architect, Symas Corp. Director, Highland Sun
http://www.symas.com http://highlandsun.com/hyc
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of g. labe
> Sent: Tuesday, November 07, 2000 2:10 AM
> Subject: problems with `configure`..
>
>
> hello.
>
> i hope you'd like to help me..
> i'm trying to compile and install openldap v2.0.6 on my solaris
> 2.6 machine
> (sparc). openldap requires openssl - i compiled it (v0.9.6)
> without a problem
> and installed it with `make install` in standard location
> (`/usr/local/ssl`).
> now, when i run openldap's `configure` i got the following error:
>
> [...]
> checking for openssl/ssl.h... no
> checking for ssl.h... no
> configure: warning: Could not locate TLS/SSL package
> configure: warning: TLS privacy protection not supported!
> [...]
>
> seems like openssl is not installed properly - what should i do to make
> openldap able to locate it?
>
>
> thanks in advance for any help,
> gl
>
>
> ps. sorry for my poor english..
>
>
> --
> B Grzegorz Labe y<AT>tech.us.edu.pl
> O
> F Centrum Techniki Obliczeniowej Uniwersytetu Slaskiego
> H FYI: I work for CTO US, but speak for myself.
> ______________________________________________________________________
> OpenSSL Project http://www.openssl.org
> Development Mailing List [EMAIL PROTECTED]
> Automated List Manager [EMAIL PROTECTED]
>
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]