[Date Prev][Date Next] [Chronological] [Thread] [Top]

RE: problem compiling openldap on solaris



> From:	Gashaw Mengistu [SMTP:gashaw@compath.com]
> Subject:	problem compiling openldap on solaris
> 
> Ok I am getting frustrated about this. I am trying to compile kerberos,
> openssl, and BerkeleyDB into this. It is either one or the other that can
> be compiled. These are my env settings:
> 
> env CPPFLAGS="-I/usr/local/BerkeleyDB/include"
> LDFLAGS="-L/usr/local/BerkeleyDB/
> lib"
> 
> This does fine for LDBM
> 
> env CC=/usr/local/bin/gcc CPPFLAGS="-I/usr/local/ssl/include"
> LDFLAGS="-R/usr/l
> ocal/lib" LIBS="-L/usr/local/ssl/lib"
> 
> And this does fine for kerberos/ssl/TLS.
> 
> I would like to combine the two CPPFLAGS and LDFLAGS and both. 
> 
Something like :
env CPPFLAGS="-I/usr/local/BerkeleyDB/include -I/usr/local/ssl/include"
LDFLAGS="-L/usr/local/BerkeleyDB/lib -L/usr/local/lib"