# Gavin Andresen # 2013-07-31 00:04:05 # https://bitcointalk.org/index.php?topic=252931.msg2835664#msg2835664 So, one thought: @p{par} Instead of "staging" all of the dependencies and then modifying the makefile/.pro to look for the dependencies in six different places, it would be cleaner to configure with @p{--}prefix=@p{lt}somewhere@s{gt} and then 'make install' to put all the dependency libraries/include files in one spot. Ideally, none of the makefiles/.pro files would contain specific version numbers for anything. @p{par} Specific notes as I worked through doing that on a Windows system, putting dependencies in C:\deps : @p{par} Openssl: /bin/perl Configure @p{--}prefix=/c/deps mingw ...etc @p{par} BDB: ../dist/configure @p{--}prefix=/c/deps ...etc @p{par} Boost: b2.exe @p{--}layout=system @p{--}prefix=C:\deps link=static threading=multi runtime-link=static toolset=gcc ...etc @p{par} Qt: configure.exe -prefix=C:\deps -I "C:\deps\include" -L "C:\deps\lib" ...etc @p{par}