Skip to content

Commit b150b09

Browse files
committed
secp256k1: add libtool as a dependency
1 parent f04f123 commit b150b09

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

autogen.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
set -e
33
srcdir="$(dirname $0)"
44
cd "$srcdir"
5+
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
6+
export LIBTOOLIZE="${GLIBTOOLIZE}"
7+
fi
58
autoreconf --install --force

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ define(_COPYRIGHT_YEAR, 2014)
99
AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[[email protected]],[bitcoin])
1010
AC_CONFIG_AUX_DIR([src/build-aux])
1111
AC_CONFIG_MACRO_DIR([src/m4])
12+
LT_INIT([disable-shared])
1213
AC_CANONICAL_HOST
1314
AH_TOP([#ifndef BITCOIN_CONFIG_H])
1415
AH_TOP([#define BITCOIN_CONFIG_H])

contrib/debian/control

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Uploaders: Micah Anderson <[email protected]>
66
Build-Depends: debhelper,
77
devscripts,
88
automake,
9+
libtool,
910
bash-completion,
1011
libboost-system-dev (>> 1.35) | libboost-system1.35-dev,
1112
libdb4.8++-dev,

contrib/gitian-descriptors/gitian-osx-bitcoin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ packages:
1111
- "bsdmainutils"
1212
- "pkg-config"
1313
- "p7zip-full"
14+
- "libtool"
1415

1516
reference_datetime: "2013-06-01 00:00:00"
1617
remotes:

doc/build-osx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Instructions: MacPorts
4141

4242
### Install dependencies
4343

44-
sudo port install boost db48@+no_java openssl miniupnpc autoconf pkgconfig automake
44+
sudo port install boost db48@+no_java openssl miniupnpc autoconf pkgconfig automake libtool
4545

4646
Optional: install Qt4
4747

@@ -69,7 +69,7 @@ Instructions: Homebrew
6969

7070
#### Install dependencies using Homebrew
7171

72-
brew install autoconf automake berkeley-db4 boost miniupnpc openssl pkg-config protobuf qt
72+
brew install autoconf automake libtool berkeley-db4 boost miniupnpc openssl pkg-config protobuf qt
7373

7474
Note: After you have installed the dependencies, you should check that the Homebrew installed version of OpenSSL is the one available for compilation. You can check this by typing
7575

0 commit comments

Comments
 (0)