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

Re: Open LDAP installation on Solaris 2.6 (SPARC)



It looks more like configure detected NDBM than BerkeleyDB.
Peek into include/portable.h and see if HAVE_BERKELEY_DB2
is defined.  If not, you likely didn't configure where
to find BerkeleyDB.   Also, if you change your environment
(by changing environment settings or installing new packages),
be sure to remove config.cache before re-running configure.

Please try:
	% rm config.cache
	% env CPPFLAGS=-I/usr/local/BerkeleyDB/include \
		LDFLAGS=-L/usr/local/BerkeleyDB/lib \
		./configure --with-ldbm-api=db2

(Modify the directory prefix for BerkeleyDB as appropriate).

Kurt