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

checking for Berkeley DB link



HI!

To me it seems that in REL_ENG_2_1 the check for BDB-4.1 was simply
substituted by checking for 4.2.

On my SuSE Linux 8.2 system I still must have a pre-built BDB-4.0.14 RPM around for other packages but would like to build REL_ENG_2_1 against a locally installed 4.1.25p1. Therefore I removed the symbolic link 4.0 to 4.1 in the 4.1 lib directory and I set LDFLAGS and LD_LIBRARY_PATH before calling configure. This used to work but not with recent REL_ENG_2_1.

checking for Berkeley DB link (-ldb42)... no
checking for Berkeley DB link (-ldb-42)... no
checking for Berkeley DB link (-ldb-4.2)... no
checking for Berkeley DB link (-ldb-4-2)... no
checking for Berkeley DB link (-ldb-4)... yes

I guess the 4.0.14 is detected here. Since REL_ENG_2_1 requires 4.1+ this
seems wrong to me. IMO on my system/configuration it should look like this:

checking for Berkeley DB link (-ldb42)... no
checking for Berkeley DB link (-ldb-42)... no
checking for Berkeley DB link (-ldb-4.2)... no
checking for Berkeley DB link (-ldb-4-2)... no
checking for Berkeley DB link (-ldb41)... no
checking for Berkeley DB link (-ldb-41)... no
checking for Berkeley DB link (-ldb-4.1)... yes

Ciao, Michael.