aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-02depends: disable unused bdb replication manager. Fixes new mingw buildsCory Fields
Newer mingw supports the features necessary to enable this api, whereas older versions didn't. However once enabled (automatically by configure), it triggers an unrelated build bug. Since it was not enabled previously anyway, and we don't depend on the functionality, just disable it across the board.
2014-10-02Merge pull request #5026Gavin Andresen
dd367ff build: macdeploy: filter out irrelevant qt5 frameworks and dylibs (Cory Fields) 9fedafb build: Fix OSX build when using Homebrew and qt5 (Cory Fields) Signed-off-by: Gavin Andresen <gavinandresen@gmail.com>
2014-10-02Merge pull request #5030Wladimir J. van der Laan
fbd36d8 Avoid introducing a virtual into CChainParams (Wladimir J. van der Laan) f0fd00c Switch testing framework from MAIN to new UNITTEST network (SergioDemianLerner)
2014-10-02Avoid introducing a virtual into CChainParamsWladimir J. van der Laan
Treat fSkipProofOfWorkCheck the same as other parameters.
2014-10-02Switch testing framework from MAIN to new UNITTEST networkSergioDemianLerner
UNITTEST inherites from MAIN but allows synamically changing its parameters using the ModifiableParams() interface
2014-10-02Merge pull request #4991Wladimir J. van der Laan
0dcb0a5 doc: Add instructions for consistent Mac OS X build names (Saivann)
2014-10-02Merge pull request #5031Wladimir J. van der Laan
e2efdf3 amount.h: update license, add header end comment + rem from util.h (Philip Kaufmann)
2014-10-02amount.h: update license, add header end comment + rem from util.hPhilip Kaufmann
2014-10-02Revert merge of pull #4845Wladimir J. van der Laan
It breaks the new mingw tests! See - https://travis-ci.org/bitcoin/bitcoin/jobs/36845581 - https://travis-ci.org/bitcoin/bitcoin/jobs/36845582 This reverts commit 470590277782cce2fe73275c74523aef59a51eab, 5e2e7fcb99738d9254d4030d53e4f711b2fc5ee0, a25fd6be138ff2bff7e2ad6a1a789db523c0193f.
2014-10-02Merge pull request #4845Wladimir J. van der Laan
4705902 Avoid introducing a virtual into CChainParams (Wladimir J. van der Laan) 5e2e7fc Suggested corrections on comments, variable names. Also new test case testing the PoW skip in UNITTEST. (SergioDemianLerner) a25fd6b Switch testing framework from MAIN to new UNITTEST network (SergioDemianLerner)
2014-10-02Merge pull request #5025Wladimir J. van der Laan
5ad450a travis: If the comparison-tool fails, dump the tail of the debug log (Cory Fields)
2014-10-02Merge pull request #5017Wladimir J. van der Laan
f74fc9b Print input index when signature validation fails, to aid debugging. (Mark Friedenbach) 217a5c9 When transaction outputs exceed inputs, show the offending amounts so as to aid debugging. (Mark Friedenbach)
2014-10-02Merge pull request #5027Wladimir J. van der Laan
0f78a0a Upgrade comparison tool further (Pieter Wuille)
2014-10-02Merge pull request #4926Pieter Wuille
584a358 Do merkle root and txid duplicates check simultaneously (Pieter Wuille)
2014-10-02Merge pull request #4980Pieter Wuille
20a11ff minor variable init changes in init.cpp (Philip Kaufmann)
2014-10-02Upgrade comparison tool furtherPieter Wuille
2014-10-01build: macdeploy: filter out irrelevant qt5 frameworks and dylibsCory Fields
2014-10-01build: Fix OSX build when using Homebrew and qt5Cory Fields
Qt5 is bottled, so configure won't find it without some help. Use brew to find out its prefix. Also, qt5 added the host_bins variable to pkg-config, use it.
2014-10-01Merge pull request #5024 from gavinandresen/osx_sign_fixGavin Andresen
Keep symlinks when copying into .app bundle
2014-10-01travis: If the comparison-tool fails, dump the tail of the debug logCory Fields
The entire debug log would be huge, and could cause issues for automated tools like travis. Printing 200 lines is an initial guess at a reasonable number, more may be required.
2014-10-01Print input index when signature validation fails, to aid debugging.Mark Friedenbach
2014-10-01When transaction outputs exceed inputs, show the offending amounts so as to ↵Mark Friedenbach
aid debugging.
2014-10-01Keep symlinks when copying into .app bundleGavin Andresen
Code signing failed for me on OSX 10.9.5 because the Versions/Current symbolic links were being replaced with a duplicate copy of the frameworks' code. Releases were bigger than they needed to be, for the same reason.
2014-10-01Merge pull request #4940Wladimir J. van der Laan
62e5f8f CMessageHeader sanity changes (Wladimir J. van der Laan)
2014-10-01Merge pull request #5023Wladimir J. van der Laan
e9f3fa7 travis: enable windows tests (Cory Fields)
2014-10-01travis: enable windows testsCory Fields
2014-10-01Merge pull request #5022Wladimir J. van der Laan
c375b5c remove dead/unused code in walletdb.cpp (Philip Kaufmann)
2014-10-01doc: add make install to build-osx.md and build-unix.mdWhit J
2014-10-01Merge pull request #4234Wladimir J. van der Laan
c122f55 qt: Register CAmount metatype (Wladimir J. van der Laan) a372168 Use a typedef for monetary values (Mark Friedenbach)
2014-10-01qt: Register CAmount metatypeWladimir J. van der Laan
This allows sending the type over queued connections. Also normalize signal/slot names.
2014-10-01remove dead/unused code in walletdb.cppPhilip Kaufmann
- closes #5021
2014-10-01Merge pull request #5008Wladimir J. van der Laan
41020eb Fix formatting in init.md (Whit J)
2014-10-01Merge pull request #5005Wladimir J. van der Laan
af0bd5e osx: fix signing to make Gatekeeper happy (again) (Cory Fields)
2014-10-01Merge pull request #5018Wladimir J. van der Laan
347a3a3 Update build-unix.md (JL2035)
2014-10-01Merge pull request #5014Wladimir J. van der Laan
41d67c7 tests: fix python test-runner for windows (Cory Fields)
2014-09-30Merge pull request #5015 from theuni/win64testGavin Andresen
tests: fix false-positive under win64
2014-10-01Update build-unix.mdJL2035
Debian also need libboost-all-dev installed.
2014-09-30Merge pull request #5006 from TheBlueMatt/travis-new-comparisontoolGavin Andresen
depends: update the comparison tool to a more recent version
2014-09-30tests: fix false-positive under win64Cory Fields
BN_ULONG isn't necessarily an unsigned long, as is the case on win64.
2014-09-30tests: fix python test-runner for windowsCory Fields
Windows needed a few fixups to get the tests running: 1. bitcoin-tx needs a file extension in Windows. Take this opportunity to add an env file, which pulls variables out of our build config. This can be extended as needed, for now it's very simple. 2. After #1, split the args out of the exec key in the test data. 3. Correct the line-endings from windows stdout
2014-09-30Revert "travis: retry tests before giving up"Matt Corallo
This reverts commit 7e3821c097c05a4790abac53ddd26ef28cb7cf4d.
2014-09-30depends: update the comparison tool to a more recent versionCory Fields
2014-09-30Fix formatting in init.mdWhit J
2014-09-29osx: fix signing to make Gatekeeper happy (again)Cory Fields
The approach from 65f3fa8d1 worked for signing on 10.9.4, but not newer versions. 10.9.5 (and up) want each framework to stand alone. Now in addition to copying the plist's from Qt for each framework, we put them in per-version dirs and only symlink to the latest, rather than using symlinks for any contents.
2014-09-30Merge pull request #4990Pieter Wuille
7bec6dd cleanup license and header end comment in chain.cpp/.h (Philip Kaufmann) 0db65d8 update license of compat and crypto (Philip Kaufmann)
2014-09-29Merge pull request #5003Pieter Wuille
68af7d0 Fix vector out of bounds in script tests (Pieter Wuille)
2014-09-29Fix vector out of bounds in script testsPieter Wuille
2014-09-29Merge pull request #4960Pieter Wuille
8138cbe Add automatic script test generation, and actual checksig tests (Pieter Wuille)
2014-09-29doc: update gpg command line for SHA256SUMS.asc in release processWladimir J. van der Laan
2014-09-29Avoid introducing a virtual into CChainParamsWladimir J. van der Laan
Treat fSkipProofOfWorkCheck the same as other parameters.