Thanks tyrion!
Can you tell me what version of mingw, qt, and deps you used?
I was trying to build it, but have some errors with the boost lib.
Sure, I first followed the guide on:
https://bitcointalk.org/index.php?topic=149479.0I used all the mentioned downloads there plus miniupnpc-1.8.
Then the fun part begins because the quide itself is not enough unfortunately..
You have to change the net.cpp file because it loads the upnp lib with a prefix (which is fine for Linux but not on Windows)
#ifdef USE_UPNP
#ifdef WIN32
#include
#include
#include
#include
#else
#include
#include
#include
#include
#endif
#endif
Also you have to make some changes to elacoin-qt.pro and src/makefile.mingw. Some libraries are needed in a different order and you need to add the
-D__NO_SYSTEM_INCLUDES
option to prevent mingw to use the wrong dependencies
I've uploaded changed files here:
https://docs.google.com/file/d/0B0f2VDPOrXt4V05WRFRDejlDYzQ/edit?usp=sharing