When I ./configure, I get this error:

configure: error: libdb is required

I signed up for an Oracle account (yak shaving), downloaded Berkeley DB, untarred and unzipped, wrestled with the unhelpful README, successfully configured, maked, and make installed. But the OpenCOBOL configure script still doesn't see the library.

link|improve this question

40% accept rate
feedback

1 Answer

The configure script cannot find Berkeley DB; you have to tell it where libdb is.

$ ./configure CPPFLAGS="-I/usr/local/BerkeleyDB.5.2/include/" LDFLAGS="-L/usr/local/BerkeleyDB.5.2/lib/"
$ make
$ make install

Updated README

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.