Problem with Berkeley DB while building Bitcoin on Windows from Source Code?

1

I'm trying to compile Bitcoin from source code in Windows 7.
When I run ./configure, I get the following error:

checking for Berkeley DB C++ headers... no
configure: error: libdb_cxx headers missing

I have followed all the steps mentioned in the source code folder doc/build_msw, but still get the same error.

Additionally, I have tried following these instructions for building Bitcoin on Windows:

I have installed berkeleydb 4.8.30.msi.

What else can I try to resolve this issue?

Deepak Chauhan

Posted 2015-03-25T09:59:28.707

Reputation: 31

Have you tried googling the error message?Murch 2015-03-25T10:05:43.150

Yes, I have tried everything, but still its give me the same errorDeepak Chauhan 2015-03-25T10:06:53.000

follow this links to resolve the issue https://bitcointalk.org/index.php?topic=149479.0 and also installed with berkeleydb 4.8.30.msi, with command also installed

Deepak Chauhan 2015-03-25T10:09:30.070

Please put sufficient information into your questions so that they can be answered by someone that is interested in trying to help you. This means that you need to provide background information, tell us what you have tried, and show us that you have put in reasonable effort to solve your problem yourself. Please don't add additional information into the comments, but edit your question to improve it. For additional information see [ask].Murch 2015-03-25T10:25:01.603

Have you tried installing berkleydb from source, as the forum page you linked tells you to do as step 2.2?Nick ODell 2015-03-25T11:04:59.227

yes, I have done with source as well as with exe db-4.8.30.msi, still it will give the same error again and againDeepak Chauhan 2015-03-25T11:10:56.310

There doesn't seem to be a file in doc/ named build_msw. Are you building the latest version of Bitcoin?

Nick ODell 2015-03-25T11:21:30.763

I am usings bitcoin 0.9 version. and It will contain build-msw.md file. If I am use 0.10 version which is a latest code, then how I can configure all dependencies for windows.Deepak Chauhan 2015-03-25T11:27:51.873

When you run the configure script and compile berkleydb, does it produces any output or error messages?Nick ODell 2015-03-25T13:23:57.563

when I compile berkeley DB with its source code, It will compile perfectly. But when I run ./configure command from bitcoin code it will give me error that "checking for Berkeley DB C++ headers... no configure: error: libdb_cxx headers missing"Deepak Chauhan 2015-03-25T13:49:18.220

No answers