Forum Home
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    [Dev] Documenting Feathercoin Specific Software settings - Part 19

    Technical Development
    1
    28
    6715
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • wrapper
      wrapper Moderators last edited by

      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

      Moved m4 to build-aux, and changed makefiles.am to build properly. :: commit

      Build

      https://github.com/FeatherCoin/Feathercoin/commit/5ebdaffa56cab75770b3fc000ad4981ca8616ce3

      share/genbuild.sh

       -LAST_COMMIT_DATE=""
       -if [ -e "$(which git)" -a -d ".git" ]; then 
      
      +SUFFIX=""
      +if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
      

      Code replaced

       -    # get a string like "2012-04-10 16:27:19  +0200"
       +    # otherwise generate suffix from git, i.e. string like "59887e8-dirty"
       -    LAST_COMMIT_DATE="$(git log -n 1 --format="%ci")"
       +    SUFFIX=$(git rev-parse --short HEAD)
       +    git diff-index --quiet HEAD -- || SUFFIX="$SUFFIX-dirty"
      
      
       +elif [ -n "$SUFFIX" ]; then
       +    NEWINFO="#define BUILD_SUFFIX $SUFFIX"
           else
      
      
       -    if [ -n "$LAST_COMMIT_DATE" ]; then
       +fi
       -        echo "#define BUILD_DATE \"$LAST_COMMIT_DATE\"" >> "$FILE"
       -    fi
       -fi
      

      Code replaced

      1 Reply Last reply Reply Quote 0
      • wrapper
        wrapper Moderators last edited by

        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

        Moved m4 to build-aux, and changed makefiles.am to build properly. :: commit

        Build

        https://github.com/FeatherCoin/Feathercoin/commit/5ebdaffa56cab75770b3fc000ad4981ca8616ce3

        src/compat/byteswap.h

         +// Copyright (c) 2014-2016 The Bitcoin Core developers
         +// Distributed under the MIT software license, see the accompanying
         +// file COPYING or http://www.opensource.org/licenses/mit-license.php.
         +
         +#ifndef BITCOIN_COMPAT_BYTESWAP_H
         +#define BITCOIN_COMPAT_BYTESWAP_H
         +
         +#if defined(HAVE_CONFIG_H)
         +#include "config/bitcoin-config.h"
         +#endif
         +
         +#include <stdint.h>
         +
         +#if defined(HAVE_BYTESWAP_H)
         +#include <byteswap.h>
         +#endif
         +
         +#if defined(__APPLE__)
         +
         +#if !defined(bswap_16)
         +
         +// Mac OS X / Darwin features; we include a check for bswap_16 because if it is already defined, protobuf has
         +// defined these macros for us already; if it isn't, we do it ourselves. In either case, we get the exact same
         +// result regardless which path was taken
         +#include <libkern/OSByteOrder.h>
         +#define bswap_16(x) OSSwapInt16(x)
         +#define bswap_32(x) OSSwapInt32(x)
         +#define bswap_64(x) OSSwapInt64(x)
         +
         +#endif // !defined(bswap_16)
         +
         +#else
         +// Non-Mac OS X / non-Darwin
         +
         +#if HAVE_DECL_BSWAP_16 == 0
         +inline uint16_t bswap_16(uint16_t x)
         +{
         +    return (x >> 8) | ((x & 0x00ff) << 8);
         +}
         +#endif // HAVE_DECL_BSWAP16
         +
         +#if HAVE_DECL_BSWAP_32 == 0
         +inline uint32_t bswap_32(uint32_t x)
         +{
         +    return (((x & 0xff000000U) >> 24) | ((x & 0x00ff0000U) >>  8) |
         +            ((x & 0x0000ff00U) <<  8) | ((x & 0x000000ffU) << 24));
         +}
         +#endif // HAVE_DECL_BSWAP32
         +
         +#if HAVE_DECL_BSWAP_64 == 0
         +inline uint64_t bswap_64(uint64_t x)
         +{
         +     return (((x & 0xff00000000000000ull) >> 56)
         +          | ((x & 0x00ff000000000000ull) >> 40)
         +          | ((x & 0x0000ff0000000000ull) >> 24)
         +          | ((x & 0x000000ff00000000ull) >> 8)
         +          | ((x & 0x00000000ff000000ull) << 8)
         +          | ((x & 0x0000000000ff0000ull) << 24)
         +          | ((x & 0x000000000000ff00ull) << 40)
         +          | ((x & 0x00000000000000ffull) << 56));
         +}
         +#endif // HAVE_DECL_BSWAP64
         +
         +#endif // defined(__APPLE__)
         +
         +#endif // BITCOIN_COMPAT_BYTESWAP_H
        

        File added

        1 Reply Last reply Reply Quote 0
        • wrapper
          wrapper Moderators last edited by

          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

          Moved m4 to build-aux, and changed makefiles.am to build properly. :: commit

          Build

          https://github.com/FeatherCoin/Feathercoin/commit/5ebdaffa56cab75770b3fc000ad4981ca8616ce3

          src/compat/endian.h

           +// Copyright (c) 2014-2016 The Bitcoin Core developers
           +// Distributed under the MIT software license, see the accompanying
           +// file COPYING or http://www.opensource.org/licenses/mit-license.php.
           +
           +#ifndef BITCOIN_COMPAT_ENDIAN_H
           +#define BITCOIN_COMPAT_ENDIAN_H
           +
           +#if defined(HAVE_CONFIG_H)
           +#include "config/bitcoin-config.h"
           +#endif
           +
           +#include <stdint.h>
           +
           +#include "compat/byteswap.h"
           +
           +#if defined(HAVE_ENDIAN_H)
           +#include <endian.h>
           +#elif defined(HAVE_SYS_ENDIAN_H)
           +#include <sys/endian.h>
           +#endif
           +
           +#if defined(WORDS_BIGENDIAN)
           +
           +#if HAVE_DECL_HTOBE16 == 0
           +inline uint16_t htobe16(uint16_t host_16bits)
           +{
           +    return host_16bits;
           +}
           +#endif // HAVE_DECL_HTOBE16
           +
           +#if HAVE_DECL_HTOLE16 == 0
           +inline uint16_t htole16(uint16_t host_16bits)
           +{
           +    return bswap_16(host_16bits);
           +}
           +#endif // HAVE_DECL_HTOLE16
           +
           +#if HAVE_DECL_BE16TOH == 0
           +inline uint16_t be16toh(uint16_t big_endian_16bits)
           +{
           +    return big_endian_16bits;
           +}
           +#endif // HAVE_DECL_BE16TOH
           +
           +#if HAVE_DECL_LE16TOH == 0
           +inline uint16_t le16toh(uint16_t little_endian_16bits)
           +{
           +    return bswap_16(little_endian_16bits);
           +}
           +#endif // HAVE_DECL_LE16TOH
           +
           +#if HAVE_DECL_HTOBE32 == 0
           +inline uint32_t htobe32(uint32_t host_32bits)
           +{
           +    return host_32bits;
           +}
           +#endif // HAVE_DECL_HTOBE32
           +
           +#if HAVE_DECL_HTOLE32 == 0
           +inline uint32_t htole32(uint32_t host_32bits)
           +{
           +    return bswap_32(host_32bits);
           +}
           +#endif // HAVE_DECL_HTOLE32
           +
           +#if HAVE_DECL_BE32TOH == 0
           +inline uint32_t be32toh(uint32_t big_endian_32bits)
           +{
           +    return big_endian_32bits;
           +}
           +#endif // HAVE_DECL_BE32TOH
           +
           +#if HAVE_DECL_LE32TOH == 0
           +inline uint32_t le32toh(uint32_t little_endian_32bits)
           +{
           +    return bswap_32(little_endian_32bits);
           +}
           +#endif // HAVE_DECL_LE32TOH
           +
           +#if HAVE_DECL_HTOBE64 == 0
           +inline uint64_t htobe64(uint64_t host_64bits)
           +{
           +    return host_64bits;
           +}
           +#endif // HAVE_DECL_HTOBE64
           +
           +#if HAVE_DECL_HTOLE64 == 0
           +inline uint64_t htole64(uint64_t host_64bits)
           +{
           +    return bswap_64(host_64bits);
           +}
           +#endif // HAVE_DECL_HTOLE64
           +
           +#if HAVE_DECL_BE64TOH == 0
           +inline uint64_t be64toh(uint64_t big_endian_64bits)
           +{
           +    return big_endian_64bits;
           +}
           +#endif // HAVE_DECL_BE64TOH
           +
           +#if HAVE_DECL_LE64TOH == 0
           +inline uint64_t le64toh(uint64_t little_endian_64bits)
           +{
           +    return bswap_64(little_endian_64bits);
           +}
           +#endif // HAVE_DECL_LE64TOH
           +
           +#else // WORDS_BIGENDIAN
           +
           +#if HAVE_DECL_HTOBE16 == 0
           +inline uint16_t htobe16(uint16_t host_16bits)
           +{
           +    return bswap_16(host_16bits);
           +}
           +#endif // HAVE_DECL_HTOBE16
           +
           +#if HAVE_DECL_HTOLE16 == 0
           +inline uint16_t htole16(uint16_t host_16bits)
           +{
           +    return host_16bits;
           +}
           +#endif // HAVE_DECL_HTOLE16
           +
           +#if HAVE_DECL_BE16TOH == 0
           +inline uint16_t be16toh(uint16_t big_endian_16bits)
           +{
           +    return bswap_16(big_endian_16bits);
           +}
           +#endif // HAVE_DECL_BE16TOH
           +
           +#if HAVE_DECL_LE16TOH == 0
           +inline uint16_t le16toh(uint16_t little_endian_16bits)
           +{
           +    return little_endian_16bits;
           +}
           +#endif // HAVE_DECL_LE16TOH
           +
           +#if HAVE_DECL_HTOBE32 == 0
           +inline uint32_t htobe32(uint32_t host_32bits)
           +{
           +    return bswap_32(host_32bits);
           +}
           +#endif // HAVE_DECL_HTOBE32
           +
           +#if HAVE_DECL_HTOLE32 == 0
           +inline uint32_t htole32(uint32_t host_32bits)
           +{
           +    return host_32bits;
           +}
           +#endif // HAVE_DECL_HTOLE32
           +
           +#if HAVE_DECL_BE32TOH == 0
           +inline uint32_t be32toh(uint32_t big_endian_32bits)
           +{
           +    return bswap_32(big_endian_32bits);
           +}
           +#endif // HAVE_DECL_BE32TOH
           +
           +#if HAVE_DECL_LE32TOH == 0
           +inline uint32_t le32toh(uint32_t little_endian_32bits)
           +{
           +    return little_endian_32bits;
           +}
           +#endif // HAVE_DECL_LE32TOH
           +
           +#if HAVE_DECL_HTOBE64 == 0
           +inline uint64_t htobe64(uint64_t host_64bits)
           +{
           +    return bswap_64(host_64bits);
           +}
           +#endif // HAVE_DECL_HTOBE64
           +
           +#if HAVE_DECL_HTOLE64 == 0
           +inline uint64_t htole64(uint64_t host_64bits)
           +{
           +    return host_64bits;
           +}
           +#endif // HAVE_DECL_HTOLE64
           +
           +#if HAVE_DECL_BE64TOH == 0
           +inline uint64_t be64toh(uint64_t big_endian_64bits)
           +{
           +    return bswap_64(big_endian_64bits);
           +}
           +#endif // HAVE_DECL_BE64TOH
           +
           +#if HAVE_DECL_LE64TOH == 0
           +inline uint64_t le64toh(uint64_t little_endian_64bits)
           +{
           +    return little_endian_64bits;
           +}
           +#endif // HAVE_DECL_LE64TOH
           +
           +#endif // WORDS_BIGENDIAN
           +
           +#endif // BITCOIN_COMPAT_ENDIAN_H
          

          File added

          1 Reply Last reply Reply Quote 0
          • wrapper
            wrapper Moderators last edited by

            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

            Moved m4 to build-aux, and changed makefiles.am to build properly. :: commit

            Build

            https://github.com/FeatherCoin/Feathercoin/commit/5ebdaffa56cab75770b3fc000ad4981ca8616ce3

            src/compat/glibc_compat.cpp

             +// Copyright (c) 2009-2014 The Bitcoin Core developers
             +// Distributed under the MIT software license, see the accompanying
             +// file COPYING or http://www.opensource.org/licenses/mit-license.php.
             +
             +#if defined(HAVE_CONFIG_H)
             +#include "config/bitcoin-config.h"
             +#endif
             +
             +#include <cstddef>
             +
             +#if defined(HAVE_SYS_SELECT_H)
             +#include <sys/select.h>
             +#endif
             +
             +// Prior to GLIBC_2.14, memcpy was aliased to memmove.
             +extern "C" void* memmove(void* a, const void* b, size_t c);
             +extern "C" void* memcpy(void* a, const void* b, size_t c)
             +{
             +    return memmove(a, b, c);
             +}
             +
             +extern "C" void __chk_fail(void) __attribute__((__noreturn__));
             +extern "C" FDELT_TYPE __fdelt_warn(FDELT_TYPE a)
             +{
             +    if (a >= FD_SETSIZE)
             +        __chk_fail();
             +    return a / __NFDBITS;
             +}
             +extern "C" FDELT_TYPE __fdelt_chk(FDELT_TYPE) __attribute__((weak, alias("__fdelt_warn")));
            

            File added

            1 Reply Last reply Reply Quote 0
            • wrapper
              wrapper Moderators last edited by wrapper

              Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

              Moved m4 to build-aux, and changed makefiles.am to build properly. :: commit

              Build

              https://github.com/FeatherCoin/Feathercoin/commit/5ebdaffa56cab75770b3fc000ad4981ca8616ce3

              A set of compat files and files removed

              src/compat/glibc_sanity.cpp
              src/compat/glibcxx_sanity.cpp
              src/compat/sanity.h
              src/compat/strnlen.cpp

              Compat

              src/m4/ax_pthread.m4
              src/m4/bitcoin_find_bdb48.m4
              src/m4/bitcoin_find_bdb51.m4

              Build file removed

              1 Reply Last reply Reply Quote 0
              • wrapper
                wrapper Moderators last edited by wrapper

                Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                Initial .travis.yml file. Builds all dependencies, and some of the arch.
                :: commit

                Build

                https://github.com/FeatherCoin/Feathercoin/commit/f71e701d1d91dbfbf685874a4001ecb15f303ab5

                .travis.yml

                 +sudo: required
                 +dist: trusty
                 +os: linux
                 +language: generic
                 +cache:
                 +  directories:
                 +  - depends/built
                 +  - depends/sdk-sources
                 +  - $HOME/.ccache
                 +env:
                 +  global:
                 +    - MAKEJOBS=-j3
                 +    - RUN_TESTS=false
                 +    - CHECK_DOC=0
                 +    - BOOST_TEST_RANDOM=1$TRAVIS_BUILD_ID
                 +    - CCACHE_SIZE=100M
                 +    - CCACHE_TEMPDIR=/tmp/.ccache-temp
                 +    - CCACHE_COMPRESS=1
                 +    - BASE_OUTDIR=$TRAVIS_BUILD_DIR/out
                 +    - SDK_URL=https://bitcoincore.org/depends-sources/sdks
                 +    - PYTHON_DEBUG=1
                 +    - WINEDEBUG=fixme-all
                 +  matrix:
                 +# ARM
                 +    - HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" CHECK_DOC=0 GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                 +# Win32
                 +    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                 +# 32-bit      + dash
                 +    - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq" DEP_OPTS="NO_QT=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc     +     +" USE_SHELL="/bin/dash"
                 +# Win64
                 +    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                 +# bitcoind
                 +    - HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
                 +# No wallet
                 +    - HOST=x86_64-unknown-linux-gnu PACKAGES="python3 xvfb" DEP_OPTS="NO_WALLET=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                 +# Cross-Mac
                 +    - HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
                 +
                 +before_install:
                 +    - export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
                 +install:
                 +    - if [ -n "$PPA" ]; then travis_retry sudo add-apt-repository "$PPA" -y; fi
                 +    - if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi
                 +    - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
                 +    - if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
                 +before_script:
                 +    - unset CC; unset CXX
                 +    - if [ "$CHECK_DOC" = 1 ]; then contrib/devtools/check-doc.py; fi
                 +    - mkdir -p depends/SDKs depends/sdk-sources
                 +    - if [ -n "$OSX_SDK" -a ! -f depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then curl --location --fail $SDK_URL/MacOSX${OSX_SDK}.sdk.tar.gz -o depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz; fi
                 +    - if [ -n "$OSX_SDK" -a -f depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then tar -C depends/SDKs -xf depends/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz; fi
                 +    - make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
                 +    # Start xvfb if needed, as documented at https://docs.travis-ci.com/user/gui-and-headless-browsers/#Using-xvfb-to-Run-Tests-That-Require-a-GUI
                 +    - if [ "$RUN_TESTS" = "true" -a "${DEP_OPTS#*NO_QT=1}" = "$DEP_OPTS" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi
                 +script:
                 +    #- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_REPO_SLUG" = "bitcoin/bitcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then while read LINE; do travis_retry gpg --keyserver hkp://subset.pool.sks-keyservers.net --recv-keys $LINE; done < contrib/verify-commits/trusted-keys; fi
                 +    #- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_REPO_SLUG" = "bitcoin/bitcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then git fetch --unshallow; fi
                 +    #- if [ "$CHECK_DOC" = 1 -a "$TRAVIS_REPO_SLUG" = "bitcoin/bitcoin" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then contrib/verify-commits/verify-commits.sh; fi
                 +    - export TRAVIS_COMMIT_LOG=`git log --format=fuller -1`
                 +    - if [ -n "$USE_SHELL" ]; then export CONFIG_SHELL="$USE_SHELL"; fi
                 +    - OUTDIR=$BASE_OUTDIR/$TRAVIS_PULL_REQUEST/$TRAVIS_JOB_NUMBER-$HOST
                 +    - BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
                 +    - depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE
                 +    - test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
                 +    - mkdir build && cd build
                 +    - ../configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
                 +    - make distdir VERSION=$HOST
                 +    - cd feathercoin-$HOST
                 +    - ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)
                 +    - make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false )
                 +    - export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib
                 +    - if [ "$RUN_TESTS" = "true" ]; then make $MAKEJOBS check VERBOSE=1; fi
                 +    - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude pruning"; fi
                 +    - if [ "$RUN_TESTS" = "true" ]; then test/functional/test_runner.py --coverage --quiet ${extended}; fi
                 +after_script:
                 +    - echo $TRAVIS_COMMIT_RANGE
                 +    - echo $TRAVIS_COMMIT_LOG
                
                1 Reply Last reply Reply Quote 0
                • wrapper
                  wrapper Moderators last edited by wrapper

                  Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                  Updated Readme to be more universal to what Feathercoin is.
                  :: commit

                  Build

                  https://github.com/FeatherCoin/Feathercoin/commit/a96837b6f69f0ca26ed31a76bacd71a3832ccd92

                  README.md

                   +Feathercoin is a Fork of the Bitcoin core project. It contains it's own 
                   +set up of certain parameters, such as block times, extra features such as 
                  

                  Descriptions updated code replaced

                   +Like Bitcoin, Feathercoin is an open source project and additional changes and fixes to those in
                   +the source code are managed by the forum community as is, depending on
                  

                  Code updated

                  +What is Feathercoin?


                  -Bitcoin is an experimental digital currency that enables instant payments to
                  +Feathercoin is an experimental digital currency that enables instant payments to
                   -anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
                   +anyone, anywhere in the world. Feathercoin uses peer-to-peer technology to operate
                   with no central authority: managing transactions and issuing money are carried
                   -out collectively by the network. Bitcoin Core is the name of open source
                   +out collectively by the network. Feathercoin Core is the name of open source
                   software which enables the use of this currency.
                  
                  
                  
                      For more information, as well as an immediately useable, binary version of
                    -the Bitcoin Core software, see https://bitcoin.org/en/download, or read the
                   +the Feathercoin Core software, see these [downloads](https://github.com/FeatherCoin/Feathercoin/releases).
                  

                  Unfortunately, the previous work ( by @wrapperband) to document the realistic relationship between Bitcoin-core and the Feathercoin fork has been altered under the mis-apprehension the Bitcoin words hadn’t been translated to say Feathercoin.

                  The Bitcoin-core referances was specifically done to show “due diligence” in being open about coding and testing responsibilities for “core parts” of the code.

                  This realistic view of the relation ship between Litecoin, Bitcoin and other altcoin source code and Feathercoin source also informs the review of unnecessary name interface changes, at least currently.

                  Particularly when considering future problems, like being able to merge Bitcoin fixes straight into the feathercoin code when we are at Bitcoin head.

                  It also informs the possibility that Feathercoin can be maintained by an open source team because it is leveraging £100,000s worth of development and testing of the Bitcoin-core and other open source projects.

                  The text does not now make as much sense as we have already said what Feathercoin is, this was supposed to be what Bitcoin-core is - the program Feathercoin is forked from and where its main testing and programming takes place, with the addition of FTC topping to the Bitcoin cake … …

                  Review and revoke?

                  1 Reply Last reply Reply Quote 0
                  • wrapper
                    wrapper Moderators last edited by wrapper

                    Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                    Re-enabled tests and made X11 start a little more often
                    :: commit

                    Re-enabled tests and made X11 start a little more often. Installing xvfv on all builds.

                    https://github.com/FeatherCoin/Feathercoin/commit/e4365be4d7de46e6b0338a49a213b1fb2d77d7b8

                    .travis.yml

                     -    - HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" CHECK_DOC=0 GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf xvfb" DEP_OPTS="NO_QT=1" CHECK_DOC=0 GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                            # Win32
                     -    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc xvfb" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                           # 32-bit      + dash
                    
                     -    - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq" DEP_OPTS="NO_QT=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc     +     +" USE_SHELL="/bin/dash"
                     +    - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq xvfb" DEP_OPTS="NO_QT=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc     +     +" USE_SHELL="/bin/dash"
                    
                            # Win64
                     -    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc xvfb" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                            # bitcoind
                     -    - HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
                     +    - HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq xvfb" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
                    
                            # No wallet
                     -    - HOST=x86_64-unknown-linux-gnu PACKAGES="python3 xvfb" DEP_OPTS="NO_WALLET=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=x86_64-unknown-linux-gnu PACKAGES="python3 xvfb" DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                            # Cross-Mac
                     -    - HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
                     +    - HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev xvfb" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
                    
                     -    - if [ "$RUN_TESTS" = "true" -a "${DEP_OPTS#*NO_QT=1}" = "$DEP_OPTS" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi
                     +    - if [ "$RUN_TESTS" = "true" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi
                    

                    Code replaced

                    Added Wine Mono to packages :: commit

                    https://github.com/FeatherCoin/Feathercoin/commit/d25e698f2d56f0e125f0dcd882167175ca3a8191

                    .travis.yml

                     -    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc xvfb" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc xvfb wine-mono" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                      # 32-bit + dash
                      - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq xvfb" DEP_OPTS="NO_QT=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
                      - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq xvfb" DEP_OPTS="NO_QT=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
                    
                      # Win64
                     -    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc xvfb" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc xvfb wine-mono" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    

                    Code replaced

                    Removed functional tests from bitcoin. :: commit

                    Removed functional tests from bitcoin.

                    turn off tests… add package for mac os x build added libc6 for mac builds

                    https://github.com/FeatherCoin/Feathercoin/commit/e9530849055387d713aa26a3aa6c1313cf8598e1

                    .travis.yml

                     -    - HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf xvfb" DEP_OPTS="NO_QT=1" CHECK_DOC=0 GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=arm-linux-gnueabihf PACKAGES="g++-arm-linux-gnueabihf" DEP_OPTS="NO_QT=1" CHECK_DOC=0 GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                      # Win32
                     -    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc xvfb wine-mono" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=i686-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-i686 wine1.6 bc" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                      # 32-bit + dash
                     -    - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq xvfb" DEP_OPTS="NO_QT=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
                     +    - HOST=i686-pc-linux-gnu PACKAGES="g++-multilib bc python3-zmq" DEP_OPTS="NO_QT=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports LDFLAGS=-static-libstdc++" USE_SHELL="/bin/dash"
                    
                      # Win64
                     -    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc xvfb wine-mono" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=x86_64-w64-mingw32 DPKG_ADD_ARCH="i386" DEP_OPTS="NO_QT=1" PACKAGES="python3 nsis g++-mingw-w64-x86-64 wine1.6 bc" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                    
                      # bitcoind
                     -    - HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq xvfb" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
                     +    - HOST=x86_64-unknown-linux-gnu PACKAGES="bc python3-zmq" DEP_OPTS="NO_QT=1 NO_UPNP=1 DEBUG=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports CPPFLAGS=-DDEBUG_LOCKORDER"
                       # No wallet
                     -    - HOST=x86_64-unknown-linux-gnu PACKAGES="python3 xvfb" DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                     +    - HOST=x86_64-unknown-linux-gnu PACKAGES="python3 xvfb" DEP_OPTS="NO_WALLET=1" RUN_TESTS=false GOAL="install" BITCOIN_CONFIG="--enable-reduce-exports"
                    
                      # Cross-Mac
                     -    - HOST=x86_64-apple-darwin11 PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev xvfb" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
                     +    - HOST=x86_64-apple-darwin11 PACKAGES="cmake libc6-dev imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
                    
                     -    - if [ "$RUN_TESTS" = "true" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi
                    
                    +    - if [ "$RUN_TESTS" = "true" -a "${DEP_OPTS#*NO_QT=1}" = "$DEP_OPTS" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi+    - if [ "$RUN_TESTS" = "true" -a "${DEP_OPTS#*NO_QT=1}" = "$DEP_OPTS" ]; then export DISPLAY=:99.0; /sbin/start-stop-daemon --start --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac; fi
                    

                    Code replaced

                    1 Reply Last reply Reply Quote 0
                    • wrapper
                      wrapper Moderators last edited by wrapper

                      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                      Changed boost min version to 1.58 to get x++11 support :: commit

                      Re-enabled tests and made X11 start a little more often. Installing xvfv on all builds.

                      https://github.com/FeatherCoin/Feathercoin/commit/c9a04c9e6b2b806923be36d1a6b47c92cf353913

                      m4/ax_boost_base.m4

                      -    boost_lib_version_req=ifelse([$1], ,1.20.0,$1)
                      +    boost_lib_version_req=ifelse([$1], ,1.58.0,$1)
                      

                      Code replaced

                      1 Reply Last reply Reply Quote 0
                      • wrapper
                        wrapper Moderators last edited by

                        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                        Update README.md :: commit

                        https://github.com/FeatherCoin/Feathercoin/commit/23e7ab334552aa70ecd892b639f554bd2c0d6d1e

                        **README.md **

                         -Status - Feathercoin 0.9.6.x  production release version line.
                         +Status - Feathercoin 0.9.6.1  Release Candidate.
                        

                        Code replaced

                        1 Reply Last reply Reply Quote 0
                        • wrapper
                          wrapper Moderators last edited by

                          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                          Fixed problem with build-aux/m4/ax_boost_base.m4 :: commit

                          https://github.com/FeatherCoin/Feathercoin/commit/b4ba3ec632d778848abac6a0273d908f24760169

                          build-aux/m4/ax_boost_base.m4

                           -    boost_lib_version_req=ifelse([$1], ,1.20.0,$1)
                           +    boost_lib_version_req=ifelse([$1], ,1.58.0,$1)
                          

                          Code replaced

                          1 Reply Last reply Reply Quote 0
                          • wrapper
                            wrapper Moderators last edited by wrapper

                            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                            Added all config-generated Makefiles to Gitignore :: commit

                            https://github.com/FeatherCoin/Feathercoin/commit/e55d4554d28308fae2e175b34ffcb6cb82ad3a71

                            .gitignore

                             +Makefile
                            

                            Code added

                            1 Reply Last reply Reply Quote 0
                            • wrapper
                              wrapper Moderators last edited by wrapper

                              Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                              … :: commit

                              Set of auto build files???

                              https://github.com/FeatherCoin/Feathercoin/commit/b5d8bc05b7711cae7db1ead9ec4e75fbcaee1d78

                              aclocal.m4

                              build-aux/config.guess

                              build-aux/config.sub

                              build-aux/depcomp

                              build-aux/install-sh

                              build-aux/ltmain.sh

                              build-aux/m4/libtool.m4

                              build-aux/m4/ltoptions.m4

                              build-aux/m4/ltsugar.m4

                              build-aux/m4/ltversion.m4

                              build-aux/m4/lt~obsolete.m4

                              build-aux/missing

                              build-aux/test-driver

                              Auto build files?

                              1 Reply Last reply Reply Quote 0
                              • wrapper
                                wrapper Moderators last edited by

                                Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                … :: commit

                                Set of auto build files? plus config update zxing

                                https://github.com/FeatherCoin/Feathercoin/commit/b5d8bc05b7711cae7db1ead9ec4e75fbcaee1d78

                                configure.ac

                                 -    if test x$use_zxing == xyes; then
                                 -     AC_MSG_ERROR("QR support requested but cannot be built. use --without-zxing")
                                
                                 +    if test x$use_qr == xyes; then
                                 +     AC_MSG_ERROR("QR support requested but cannot be built. use --without-qrencode")
                                

                                Code replaced

                                1 Reply Last reply Reply Quote 0
                                • wrapper
                                  wrapper Moderators last edited by

                                  Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                  … :: commit

                                  Set of auto build files? plus qimagesource update

                                  https://github.com/FeatherCoin/Feathercoin/commit/b5d8bc05b7711cae7db1ead9ec4e75fbcaee1d78

                                  src/qt/qimagesource.cpp

                                  -    ArrayRef<char> mymatrix(width*height);
                                  +    ArrayRef<char> mymatrix(this->getWidth()*this->getHeight());
                                  
                                  -    for (int y = 0; y < height; y++)
                                  +    for (int y = 0; y < this->getHeight(); y++)
                                  
                                   {
                                  
                                  -        for (int x = 0; x < width; x++) {
                                  +        for (int x = 0; x < this->getWidth(); x++) {
                                  
                                  -            mymatrix[y*width+x] = qGray(image.pixel(x, y));
                                  +            mymatrix[y*this->getWidth()+x] = qGray(image.pixel(x, y));
                                  

                                  Code replaced

                                  1 Reply Last reply Reply Quote 0
                                  • wrapper
                                    wrapper Moderators last edited by

                                    Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                    Fixed issue #176 :: commit

                                    This is 0.9.6.1 branch, but release tag v0.9.6 has the same issue.

                                    I don’t have zxing installed and your configure does not detect it:

                                    ./configure --with-incompatible-bdb

                                    I don’t want zxing and QR code support. Your configure script appears to allow for that, but the build process does not honor it.

                                    https://github.com/FeatherCoin/Feathercoin/commit/ad8a5c8d67fab4d45d63a8cae970c36dd426d3f6

                                    src/qt/addressbookpage.cpp

                                     -#endif
                                     -#ifdef USE_ZXING
                                    

                                    Code removed

                                    1 Reply Last reply Reply Quote 0
                                    • wrapper
                                      wrapper Moderators last edited by

                                      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                      added check for qtprint support needed for paperwallet :: commit

                                      https://github.com/FeatherCoin/Feathercoin/commit/e977bc52740507636c73a8e5c7768665acc16fda

                                      build-aux/m4/bitcoin_qt.m4

                                        -    qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets"
                                        +    qt5_modules="Qt5Core Qt5Gui Qt5Network Qt5Widgets Qt5PrintSupport"
                                      

                                      Code replaced

                                      1 Reply Last reply Reply Quote 0
                                      • wrapper
                                        wrapper Moderators last edited by wrapper

                                        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                        Added build-aux directory to ignore file :: commit

                                        https://github.com/FeatherCoin/Feathercoin/commit/925b80b845fa4bb4d438d56ee7b32bb81428d75c

                                        .gitignore

                                         +build-aux/
                                        

                                        Code added

                                        1 Reply Last reply Reply Quote 0
                                        • wrapper
                                          wrapper Moderators last edited by

                                          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                          Revert "Added depends folder :: commit

                                          Revert “Added depends folder from bitcoin’s tree to build all dependencies.”

                                          It is hard to backport this, and will be available when we move to head

                                          https://github.com/FeatherCoin/Feathercoin/commit/24962a56470871d5cf510ced422fe1ac2d719775

                                          .gitignore

                                           +*.tar.gz
                                           +Makefile*
                                          
                                           +*.in
                                           +*.patch
                                          
                                           +Makefile
                                          

                                          Code added

                                           -src/**Makefile
                                           -/src/test/Makefile
                                           -/src/qt/test/Makefile
                                           -/src/qt/Makefile
                                           -/src/Makefile
                                           -/src/config/stamp-h1
                                           -/src/config/bitcoin-config.h.in
                                           -/src/config/bitcoin-config.h
                                           -/Makefile
                                           -/libtool
                                          

                                          Code removed

                                          depends/.gitignore

                                           -SDKs/
                                           -work/
                                           -built/
                                           -sources/
                                           -config.site
                                           -x86_64*
                                           -i686*
                                           -mips*
                                           -arm*
                                           -aarch64*
                                          

                                          Code removed

                                          depends/Makefile
                                          depends/README.md
                                          depends/builders/darwin.mk
                                          depends/builders/default.mk
                                          depends/builders/linux.mk
                                          depends/config.guess
                                          depends/config.site.in
                                          depends/config.sub
                                          depends/description.md
                                          depends/funcs.mk
                                          depends/hosts/darwin.mk
                                          depends/hosts/default.mk
                                          depends/hosts/linux.mk
                                          depends/hosts/mingw32.mk
                                          depends/packages.md
                                          depends/packages/bdb.mk
                                          depends/packages/boost.mk
                                          depends/packages/dbus.mk
                                          depends/packages/expat.mk
                                          *depends/packages/fontconfig.mk
                                          depends/packages/freetype.mk
                                          depends/packages/libICE.mk
                                          depends/packages/libSM.mk
                                          depends/packages/libX11.mk
                                          depends/packages/libXau.mk
                                          depends/packages/libXext.mk
                                          depends/packages/libevent.mk
                                          depends/packages/libxcb.mk
                                          depends/packages/miniupnpc.mk
                                          depends/packages/native_biplist.mk
                                          depends/packages/native_ccache.mk
                                          depends/packages/native_cctools.mk
                                          depends/packages/native_cdrkit.mk
                                          depends/packages/native_ds_store.mk
                                          depends/packages/native_libdmg-hfsplus.mk
                                          depends/packages/native_mac_alias.mk
                                          depends/packages/native_protobuf.mk
                                          depends/packages/openssl.mk
                                          depends/packages/packages.mk
                                          depends/packages/protobuf.mk
                                          depends/packages/qrencode.mk
                                          depends/packages/qt.mk
                                          depends/packages/xcb_proto.mk
                                          depends/packages/xextproto.mk
                                          depends/packages/xproto.mk
                                          depends/packages/xtrans.mk
                                          depends/packages/zeromq.mk
                                          depends/packages/zlib.mk
                                          depends/patches/native_biplist/sorted_list.patch
                                          depends/patches/native_cdrkit/cdrkit-deterministic.patch
                                          depends/patches/native_mac_alias/python3.patch
                                          depends/patches/qt/fix-xcb-include-order.patch
                                          depends/patches/qt/fix_qt_pkgconfig.patch
                                          depends/patches/qt/mac-qmake.conf
                                          depends/patches/qt/mingw-uuidof.patch
                                          depends/patches/qt/pidlist_absolute.patch
                                          depends/patches/zeromq/9114d3957725acd34aa8b8d011585812f3369411.patch
                                          depends/patches/zeromq/9e6745c12e0b100cd38acecc16ce7db02905e27c.patch

                                          Files removed

                                          1 Reply Last reply Reply Quote 0
                                          • wrapper
                                            wrapper Moderators last edited by

                                            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                            Revert “Moved man pages to the doc folder” :: commit

                                            Revert “Moved man pages to the doc folder”

                                            This reverts commit f403c95.

                                            https://github.com/FeatherCoin/Feathercoin/commit/6836c2434afe060301c7838f8bb1221424d5cee1

                                            doc/man/Makefile.am
                                            doc/man/feathercoin-cli.1
                                            doc/man/feathercoin-qt.1
                                            doc/man/feathercoin.conf.5
                                            doc/man/feathercoind.1

                                            Files moved / deleted??

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post