Jack Grigg
e6a34c283a
Revert "remove -mt suffix from boost libraries built by depends"
...
This reverts commit 33ae5edd2c .
2018-03-26 16:20:55 +02:00
Simon
bbcdabc28d
Update boost to 1.66.0
2018-03-23 15:07:17 -07:00
rofl0r
33ae5edd2c
remove -mt suffix from boost libraries built by depends
2018-02-23 15:52:55 +00:00
Homu
c720d15c45
Auto merge of #2700 - kozyilmaz:emptyspaces, r=str4d
...
PATH variable containing spaces cause build failure
Spaces in PATH variable is creating build issues (observed on macOS). For example "VMware Fusion" adds itself to PATH like `/Applications/VMware Fusion.app/Contents/Public`.
2017-12-15 11:35:05 -08:00
Wladimir J. van der Laan
57ab896ba4
test: Remove java comparison tool
2017-12-01 14:10:16 +00:00
daniel
0b2a64f484
add powerpc build support for openssl lib
2017-12-01 14:10:15 +00:00
Jack Grigg
9635679cba
Replace "install -D" with "mkdir -p && install"
2017-11-29 17:26:47 +00:00
fanquake
e2e7ca3054
[depends] Set OSX_MIN_VERSION to 10.8
2017-11-29 17:24:59 +00:00
Cory Fields
68ce87eddc
depends: bump OSX toolchain
...
clang: 3.7.1
cctools: 877.8
ld64: 253.9
2017-11-29 17:24:59 +00:00
fanquake
377092a152
[depends] Add -stdlib=libc++ to darwin CXX flags
2017-11-29 17:24:59 +00:00
Cory Fields
038a858d2f
depends: use c++11
2017-11-29 17:24:59 +00:00
MarcoFalke
b0a7ddb0b1
[depends] builders: No need to set -L and --location for curl
2017-11-29 17:24:59 +00:00
Luke Dashjr
a8982ac97d
Bugfix: depends/Travis: Use --location (follow redirects) and --fail [on HTTP error response] with curl
2017-11-29 17:24:59 +00:00
Luke Dashjr
bd03cfebec
depends: Use curl for fetching on Linux
...
Currently Travis's wget fails fetching qrencode:
Fetching qrencode...
ERROR: no certificate subject alternative name matches
requested host name `fukuchi.org'.
To connect to fukuchi.org insecurely, use `--no-check-certificate'.
OpenSSL: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error
Unable to establish SSL connection.
make: *** [/home/travis/build/luke-jr/bitcoin/depends/sources/download-stamps/.stamp_fetched-qrencode-qrencode-3.4.4.tar.bz2.hash] Error 4
2017-11-29 17:24:59 +00:00
Cory Fields
1f623c64b6
c++11: fix libbdb build against libc++ in c++11 mode
...
atomic_init clashes with
2017-11-29 17:24:59 +00:00
Homu
099bf3dd8f
Auto merge of #2763 - syd0:upgrade-libsodium, r=daira
...
Update libsodium from 1.0.11 to 1.0.15
Closes #2693 .
2017-11-28 13:20:13 -08:00
syd
0c177bc585
Update libsodium from 1.0.11 to 1.0.15
2017-11-22 23:16:51 -05:00
syd
24902602f2
Upgrade googletest to 1.8.0
2017-11-19 14:08:17 -05:00
kozyilmaz
35e12d992a
empty spaces in PATH variable cause build failure
2017-10-31 15:14:21 +03:00
Sean Bowe
26a8f68ea8
Remove libsnark from depends system and integrate it into build system.
2017-08-02 15:49:30 +01:00
Daira Hopwood
506a21850a
Remove UPnP support. fixes #2500
...
Signed-off-by: Daira Hopwood <daira@jacaranda.org >
2017-07-03 08:57:05 +01:00
Homu
00fd23930b
Auto merge of #2443 - str4d:1621-priority-download-path, r=str4d
...
Rename FALLBACK_DOWNLOAD_PATH to PRIORITY_DOWNLOAD_PATH
Closes #1621 .
2017-06-19 23:46:44 -07:00
Jack Grigg
be60c6d7f6
Rename FALLBACK_DOWNLOAD_PATH to PRIORITY_DOWNLOAD_PATH
...
Closes #1621 .
2017-06-15 16:32:36 +12:00
kozyilmaz
e6dc07bc69
support per platform filename and hash setting for dependencies
2017-06-09 13:15:27 +03:00
Simon
b9f6e40c9c
Patch to build Proton with minimal dependencies.
...
Closes #2279 . Configures CMake to enable C++11, build static libaries
and only build cpp bindings with minimal dependencies. Documentation,
examples, tests and other language bindings are no longer built.
CMake will no longer try to find commands and packages which are not
required for building the target.
2017-04-28 12:03:37 -07:00
Simon
56f66372c5
Fix proton build issue with debian jessie, as used on CI servers.
...
Debian 8 stable ships with gcc 4.9.2 and cmake 3.0.2. Previously
the depends package used CMAKE_CXX_STANDARD to tell cmake to use
C++11, but the option requires cmakes 3.1+. To resolve the issue
we now update relevant CMakeLists.txt and set CMAKE_CXX_FLAGS.
2017-04-16 00:30:58 -07:00
Simon
f493d3e044
Add --disable-proton flag to build.sh. Proton has build/linker issues with gcc 4.9.2 and requires gcc 5.x.
2017-03-25 09:41:54 -07:00
Simon
99eb947a98
Add AMQP 1.0 support via Apache Qpid Proton C++ API 0.17.0
2017-03-25 08:51:40 -07:00
Jack Grigg
a163953929
[depends] libevent 2.1.8
2017-03-24 09:03:59 +13:00
fanquake
ec626cc530
[depends] libevent 2.1.7rc
2017-03-24 09:03:59 +13:00
Wladimir J. van der Laan
32f4e7744c
depends: Add libevent compatibility patch for windows
...
Add a patch that seems to be necessary for compatibilty of libevent
2.0.22 with recent mingw-w64 gcc versions (at least GCC 5.3.1 from Ubuntu
16.04).
Without this patch the Content-Length in the HTTP header ends up as
`Content-Length: zu`, causing communication between the RPC
client and server to break down. See discussion in #8653 .
Source: https://sourceforge.net/p/levent/bugs/363/
Thanks to @sstone for the suggestion.
2017-03-24 09:03:59 +13:00
Cory Fields
91295c4b4d
libevent: Windows reuseaddr workaround in depends
...
Make it possible to reuse sockets.
This is necessary to make the RPC tests work in WINE.
2017-03-24 09:03:59 +13:00
Cory Fields
505b30ff01
libevent: add depends
2017-03-24 09:03:59 +13:00
Sean Bowe
802ea76b3a
Allow Rust-language related assets to be disabled with --disable-rust.
2017-03-18 07:47:40 -06:00
Sean Bowe
6a0c7ceae9
Introduce librustzcash and Rust to depends system.
2017-03-17 11:46:41 -06:00
Simon
abecfc422c
Remove redundant gui options from build scripts
2017-03-10 10:35:23 -08:00
Daira Hopwood
8247636d21
Remove unused packages and patches.
...
Signed-off-by: Daira Hopwood <daira@jacaranda.org >
2017-03-07 19:40:09 +00:00
Daira Hopwood
d596658022
Remove NO_QT make option.
...
Signed-off-by: Daira Hopwood <daira@jacaranda.org >
2017-03-07 19:15:08 +00:00
Sean Bowe
69566ad756
Update libsnark.
2017-02-09 15:30:09 -07:00
Jack Grigg
602407de95
[depends] ZeroMQ 4.2.1
2017-02-08 22:11:53 +00:00
fanquake
00bcf2230d
[depends] ZeroMQ 4.1.5
2017-02-08 22:11:53 +00:00
fanquake
c3c55e10e8
[depends] ZeroMQ 4.1.4
2017-02-08 22:11:53 +00:00
fanquake
6702d371c5
[depends] zeromq 4.0.7
2017-02-08 22:10:42 +00:00
Jonas Schnelli
0388c23a76
depends: fix platform specific packages variable
...
prefix instead of postfix
2017-02-08 22:10:42 +00:00
Cory Fields
cce7754eb8
Depends: Add ZeroMQ package
2017-02-08 22:10:42 +00:00
Jack Grigg
18cc8f45fd
Upgrade OpenSSL to 1.1.0d
...
Closes #2047
2017-01-31 15:23:56 +01:00
Jack Grigg
bebec25313
Add an upstream miniupnpc patch revision
2016-12-01 12:29:18 +13:00
Jack Grigg
aefa70f948
Apply miniupnpc patches to enable compilation on Solaris 11
...
These can be removed after the next MiniUPnP release.
Closes #1835 .
2016-12-01 01:12:59 +13:00
Jack Grigg
da7bcff4fe
Build libsnark with -march=x86-64 instead of -march=native
2016-10-27 16:32:27 -07:00
Daira Hopwood
9cb7abafb5
Changes to upgrade bdb to 6.2.23
...
ref #1255
2016-10-25 16:18:19 +01:00