[Dev] Documenting Feathercoin Specific Software settings - Part 14
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Updated FTC Install dependencies guide, build zxing (c++ version) :: commit
Various MD layout changes
https://github.com/FeatherCoin/Feathercoin/commit/20e75314f47ff6bb8d625bcee86c934b76a8679a
doc/README.md
+mkdir build +cd build
Extra instructions for zxing build
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Further tweeks to zxing build from source instructions :: commit
Various MD layout changes
https://github.com/FeatherCoin/Feathercoin/commit/4a1fd9b460e266ee74af34a6bc10b73c7001aba7
doc/README.md
+cmake -G “Unix Makefiles”.. -D_GLIBCXX_USE_CXX11_ABI=0 -DCMAKE_BUILD_TYPE=Release
Instructions don’t copy from markdown. …
+--with-incompatible-bdb
Additional build instructions available
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Further tweeks to zxing build from source instructions :: commit
Various MD layout changes, further updates
https://github.com/FeatherCoin/Feathercoin/commit/acb5abcbbeac0cec38fe9665f364900704d01f60
doc/README.md
-export CXXFLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" +export CXXFLAGS="-fPIC"
Code replaced
+sudo nano /usr/local/include/zxing/LuminanceSource.h +On Line 30 : Change public to private:
Code replaced
+ ./configure --with-gui=qt5 --enable-tests=no --with-incompatible-bdb --enable-upnp-default --with-qrcode=yes
Additional switches
+### Build Berkley database version 4.8 from source. + +wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz +tar -xzvf db-4.8.30.NC.tar.gz +cd db-4.8.30.NC/build_unix/ +…/dist/configure --enable-cxx +make +sudo make install + +Example config usage : + +./configure --disable-upnp-default --disable-tests --with-boost-libdir=/usr/lib/arm-linux-gnueabihf CPPFLAGS="-I/usr/local/BerkeleyDB.4.8/include -O2" LDFLAGS="-L/usr/local/BerkeleyDB.4.8/lib"
Add code for Berkelay self build
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
** Updated main.cpp to remove unused variable :: commit**
Updated main.cpp to remove unused variable pblockindexFBBHLast and ./…
…autoconfig.sh to use autoupdate
https://github.com/FeatherCoin/Feathercoin/commit/acb5abcbbeac0cec38fe9665f364900704d01f60
-autoreconf -if --warnings=all +autoupdate +autoreconf -if --warnings=all
Code replaced
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
** Updated main.cpp to remove unused variable :: commit**
Updated main.cpp to remove unused variable pblockindexFBBHLast and ./…
…autoconfig.sh to use autoupdate
https://github.com/FeatherCoin/Feathercoin/commit/acb5abcbbeac0cec38fe9665f364900704d01f60
src/main.cpp
-static CBlockIndex* pblockindexFBBHLast; +// pblockindexFBBHLast : no longer used +// static CBlockIndex* pblockindexFBBHLast;
Comments and code removed
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Correct spelling / typo wit = with in the Bitcoingui.cpp :: commit
Correct spelling / typo wit = with in the Bitcoingui.cpp connector menu
https://github.com/FeatherCoin/Feathercoin/commit/acb5abcbbeac0cec38fe9665f364900704d01f60
src/qt/bitcoingui.cpp
+ coinnectorAction->setStatusTip(tr("Exchange other coins with your feathercoin on Coinnector"));
Needs review against Translation database.
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
ScanHash_CryptoPP unused function remove :: commit
ScanHash_CryptoPP unused function removed from miner.cpp
https://github.com/FeatherCoin/Feathercoin/commit/2ac641ec011faf29f669f8b1e8449ef7e94b2af2
src/miner.cpp
+// ScanHash_CryptoPP not used +//unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone) +//{ +// unsigned int& nNonce = *(unsigned int*)(pdata + 12); +// for (;;) +// { +// // Crypto++ SHA256 +// // Hash pdata using pmidstate as the starting state into +// // pre-formatted buffer phash1, then hash phash1 into phash +// nNonce++;
Start of code which is commented out, so can be put back
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Hash out deprecated autoconfig and add autoupdate t :: commit
Hash out deprecated autoconfig and add autoupdate to stop build warnings
https://github.com/FeatherCoin/Feathercoin/commit/0edb5929d63efc16c7b3c599732173243ea01e9d
-autoreconf -if --warnings=all +# autoreconf -if --warnings=all
Minor update
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Removed an unused variable sw :: commit
https://github.com/FeatherCoin/Feathercoin/commit/9a7b663c75fcc443d9118df0db9c6105760982db
src/qt/coinnectordialog.cpp
+// int sw=0;
Code commented out
-
Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*
Re-included autoreconf in ./autogen.sh :: commit
Re-included autoreconf in ./autogen.sh, included echo messages autoupdate is running
https://github.com/FeatherCoin/Feathercoin/commit/fdc52bc1c0e366f30c2c3f80af9128dcd556fdb1
-# autoreconf -if --warnings=all +echo running autoreconf ..... +autoreconf -if --warnings=all autoupdate +echo +echo running autoupdate completed .....
Code replaced