View bitcoincode profile
Welcome
to ProgramOnChain.com!
at the time of joining
Send us your
suggestions
through our Social Media channels.
at the time of joining
bitcoincode
Developer
Profile
Twitter
Sign in
Login
Register
Global login (take tour)
Repositories
View bitcoincode Repositories
Create your own
Pull Requests
View bitcoincode Pull Requests
bitcoincode
/
bitcoin
Click here to go back...
Edit this file
Remove this file
#!/bin/sh # Copyright (c) 2013-2016 The Bitcoin Core developers # Copyright (c) 2019 Bitcoin Association # Distributed under the Open BSV software license, see the accompanying file LICENSE. set -e srcdir="$(dirname $0)" cd "$srcdir" if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then LIBTOOLIZE="${GLIBTOOLIZE}" export LIBTOOLIZE fi which autoreconf >/dev/null || \ (echo "configuration failed, please install autoconf first" && exit 1) autoreconf --install --force --warnings=all