Berkeley DB -ldb_cxx not found -


I am creating an application that requires Berkeley DB (http://www.resiprocate.org) . I'm building on OS X, and I had to install Berkeley DB because it was not already in the machine. However, the reSIProcate package I am trying to create can not find the db_cxx library ( -ldb_cxx ). The only available files in the established Berkeley DB lib directory are:

  libdb-5.3.a libdb-5.3.dylib libdb-5.4.la libdb.a   

Actually db_cxx ... what is -ldb_cxx old? Or is there any option that I need to set up Berkeley DB to build and install a DBCXx library?

LibDb-cxx is the required API for c ++, it is not being created by default To create Libdb-cxx, go to the directory where you created Berkeley DB, then install

  CD build_anix./dist/configure --enable-cxx sudo    

Comments