1
1
I'm trying to install the current version of namecoin from github.
After much trouble and poking around, I found the official install instructions here:https://github.com/namecoin/wiki/wiki/Build-Namecoin-From-Source
Instructions are:
git clone https://github.com/namecoin/namecoin.git
cd namecoin/src
make -f makefile.unix namecoind
Only problem, there is no makefile.unix, only MakeFile and makefile.mingw
Anyone get through something like this?
So far so good, seems to be compiling. One last question, if I may, I tried running make namecoind USE_UPNP=- yet I get fatal error: miniupnpc/miniwget.h: No such file or directory. How do I flag no UPnP? – Mark – 2014-03-23T23:27:47.310
I'm not sure, but perhaps try
USE_UPNP=(that is, without anything at all after the=). – Greg Hewgill – 2014-03-23T23:35:06.603make USE_UPNP=' ' for namecoin-qt – None – 2014-05-09T15:59:35.237