Build Namecoin from source

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?

Mark

Posted 2014-03-20T17:39:35.717

Reputation: 1 647

Answers

1

The Makefile in that directory appears to be a perfectly good makefile. Perhaps the build instructions are out of date. So try:

make namecoind

(without the -f option, the make program automatically reads the file named Makefile).

Greg Hewgill

Posted 2014-03-20T17:39:35.717

Reputation: 3 321

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.603

make USE_UPNP=' ' for namecoin-qt – None – 2014-05-09T15:59:35.237