Permalink
Switch branches/tags
v0.14.2
v0.14.2rc2
v0.14.2rc1
v0.14.1
v0.14.1rc2
v0.14.1rc1
v0.14.0
v0.14.0rc3
v0.14.0rc2
v0.14.0rc1
v0.13.2
v0.13.2rc1
v0.13.1
v0.13.1rc3
v0.13.1rc2
v0.13.1rc1
v0.13.0
v0.13.0rc3
v0.13.0rc2
v0.13.0rc1
v0.12.1
v0.12.1rc2
v0.12.1rc1
v0.12.0
v0.12.0rc5
v0.12.0rc4
v0.12.0rc3
v0.12.0rc2
v0.12.0rc1
v0.11.3
v0.11.2
v0.11.2rc1
v0.11.1
v0.11.1rc2
v0.11.1rc1
v0.11.0
v0.11.0rc3
v0.11.0rc2
v0.11.0rc1
v0.10.5
v0.10.4
v0.10.4rc1
v0.10.3
v0.10.3rc2
v0.10.3rc1
v0.10.2
v0.10.2rc1
v0.10.1
v0.10.1rc3
v0.10.1rc2
v0.10.1rc1
v0.10.0
v0.10.0rc4
v0.10.0rc3
v0.10.0rc2
v0.10.0rc1
v0.9.5
v0.9.5rc2
v0.9.5rc1
v0.9.4
v0.9.3
v0.9.3rc2
v0.9.3rc1
v0.9.2.1
v0.9.2
v0.9.2rc2
v0.9.2rc1
v0.9.1
v0.9.0
v0.9.0rc3
v0.9.0rc2
v0.9.0rc1
v0.8.6
v0.8.6rc1
v0.8.5
v0.8.4
v0.8.4rc2
v0.8.3
v0.8.2
v0.8.2rc3
v0.8.2rc2
v0.8.2rc1
v0.8.1
v0.8.0
v0.8.0rc1
v0.7.2
v0.7.2rc2
v0.7.1
v0.7.1rc1
v0.7.0
v0.7.0rc3
v0.7.0rc2
v0.7.0rc1
v0.6.3
v0.6.3rc1
v0.6.2.2
v0.6.2.1
v0.6.2
v0.6.1
v0.6.1rc2
Nothing to show
bitcoin/autogen.sh
3b4b6dc
Sep 21, 2016
Users who have contributed to this file
| #!/bin/sh | |
| # Copyright (c) 2013-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. | |
| 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 |