Mr. Higgins,
It looks like Linux Mint does not compile using your v0.9.3-gap
POWUTLS error
Sorry can't paste out the whole thing.
You are building it under Linux Mint I assume?
When I checked, the PoWCore submodule wasn't using master but HEAD. I checked stackoverflow and found:
https://stackoverflow.com/questions/18770545/why-is-my-git-submodule-head-detached-from-master/55570998#55570998where I learned that
git submodule update needs to be
git submodule update --remote --mergeI have just used the following with success:
git clone https://github.com/gjhiggins/gapcoin.git gapcoin-0.9.3
cd gapcoin-0.9.3/
git checkout v0.9.3-gap
git submodule init
git submodule update --remote --merge
./autogen.sh
./configure --with-incompatible-bdb --with-gui --with-miniupnpc --with-qrencode --disable-tests
make
Cheers
Graham