aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* s/Doge/Dis/gTomo Ueda2021-09-021-2/+2
|
* s/doge/dis/gTomo Ueda2021-09-021-9/+9
|
* fixate v1.14.4Patrick Lodder2021-08-201-1/+1
|
* fix: macos qt buildMalta Micael2021-07-011-1/+1
|
* open 1.14.4 for developmentPatrick Lodder2021-03-011-2/+2
|
* mark 1.14.3 as releasePatrick Lodder2021-02-271-1/+1
|
* Bump version to 1.14.3 (#1745)Ross Nicoll2021-02-181-3/+3
| | | | * Bump version to 1.14.3 * Update copyright year and release status
* Set next release version to 1.14.2v1.14.2langerhans2019-11-031-1/+1
|
* Revert behaviour change in getauxblockRoss Nicoll2019-07-131-1/+1
| | | | Change getauxblock to respond with a "target" field instead of "_target".
* Mark 1.14 ready for releaseRoss Nicoll2019-05-191-1/+1
|
* Fix version and update copyright yearlangerhans2019-03-251-2/+2
|
* Fix copyright substitutionRoss Nicoll2019-03-251-1/+1
| | | | List both Bitcoin & Dogecoin developers in copyright notice.
* Rename binaries to match DogecoinRoss Nicoll2019-03-251-12/+12
|
* Update DB version to 5.1Ross Nicoll2018-09-191-2/+2
|
* build: bump version to 0.14.2Wladimir J. van der Laan2017-06-021-1/+1
|
* Bump version to 0.14.1Wladimir J. van der Laan2017-04-051-1/+1
|
* util: Work around (virtual) memory exhaustion on 32-bit w/ glibcWladimir J. van der Laan2017-03-311-0/+8
| | | | | | | | | | | glibc-specific: On 32-bit systems set the number of arenas to 1. By default, since glibc 2.10, the C library will create up to two heap arenas per core. This is known to cause excessive virtual address space usage in our usage. Work around it by setting the maximum number of arenas to 1. Github-Pull: #10120 Rebased-From: 625488ace5c41ccba1b68323a72588000782f820
* build: force a c++ standard to be specifiedCory Fields2017-02-231-1/+1
| | | | | | | | Newer compilers may switch to newer standards by default. For example, gcc6 uses std=gnu++14 by default. Github-Pull: #9831 Rebased-From: 9829c54de2725037ee0702306cbaa99fc9aa1826
* build: add --enable-werror optionCory Fields2017-02-231-0/+17
| | | | | | | This turns some compiler warnings into errors. Useful for c-i. Github-Pull: #9789 Rebased-From: 205830a37b7ffa4f8fa306e5c9eafcee3777fa68
* build: warn about variable length arraysCory Fields2017-02-231-0/+1
| | | | | Github-Pull: #9789 Rebased-From: b602fe0f7372256bd2bc8c116d23dee3253882f9
* build: bump version to 0.14.0Wladimir J. van der Laan2017-02-171-3/+3
|
* [Trivial] Update license year range to 2017Lauda2017-01-231-1/+1
| | | | The same as #7363.
* Merge #9475: Let autoconf detect presence of EVP_MD_CTX_newWladimir J. van der Laan2017-01-051-0/+7
|\ | | | | | | 0388afe Let autoconf detect presence of EVP_MD_CTX_new (Luke Dashjr)
| * Let autoconf detect presence of EVP_MD_CTX_newLuke Dashjr2017-01-041-0/+7
| | | | | | | | Fixes LibreSSL compatibility
* | Merge #9412: build: Fix 'make deploy' for OSXJonas Schnelli2017-01-021-0/+1
|\ \ | | | | | | | | | | | | | | | 2fb98f6 Fix bug in dmg builder so that it actually reads in the configuration file (Don Patterson) b01667c Mention RSVG dependency when creating the disk image on OSX (Jonas Schnelli) 09aefb5 build: Fix 'make deploy' for OSX (Cory Fields)
| * | Mention RSVG dependency when creating the disk image on OSXJonas Schnelli2016-12-231-0/+1
| | |
| * | build: Fix 'make deploy' for OSXCory Fields2016-12-231-1/+1
| |/ | | | | | | | | Native OSX uses system tools rather than 3rd party dependencies. rsvg-convert is still required, though.
* / Fix linker error when configured with --enable-lcovDouglas Roark2016-12-281-0/+2
|/
* remove obsolete run-bitcoind-for-test.shAlex Morcos2016-12-041-1/+0
|
* Merge #9260: Mrs Peacock in The Library with The Candlestick (killed ↵Pieter Wuille2016-12-021-1/+1
|\ | | | | | | | | | | | | | | main.{h,cpp}) 76faa3c Rename the remaining main.{h,cpp} to validation.{h,cpp} (Matt Corallo) e736772 Move network-msg-processing code out of main to its own file (Matt Corallo) 87c35f5 Remove orphan state wipe from UnloadBlockIndex. (Matt Corallo)
| * Rename the remaining main.{h,cpp} to validation.{h,cpp}Matt Corallo2016-12-021-1/+1
| |
* | Revert "Use async name resolving to improve net thread responsiveness"Matt Corallo2016-12-011-2/+0
|/ | | | | | | | | | This reverts commit caf6150e9785da408f1e603ae70eae25b5202d98. getaddrinfo_a has a nasty tendency to segfault internally in its background thread, on every version of glibc I tested, especially under helgrind. See https://sourceware.org/bugzilla/show_bug.cgi?id=20874
* Merge #9156: Add compile and link options echo to configureWladimir J. van der Laan2016-11-171-0/+25
|\ | | | | | | d8274bc Add compile and link options echo to configure (Jonas Schnelli)
| * Add compile and link options echo to configureJonas Schnelli2016-11-161-0/+25
| |
* | build: fix qt5.7 build under macOSCory Fields2016-11-151-1/+9
|/ | | | | | OBJCXX's std flags don't get defined by our cxx macro. Rather than hard-coding to c++11, just force OBJCXX to be the same as CXX unless the user specified otherwise.
* Revert "Check and enable -Wshadow by default."Wladimir J. van der Laan2016-11-091-1/+0
| | | | | | | This reverts commit fd5654cab1e5d317119f747abd245c620e8ba29b. This is still causing too many warnings for some compiler combinations, forget it for now.
* Merge #8794: Enable -Wshadow by defaultWladimir J. van der Laan2016-11-091-0/+1
|\ | | | | | | | | 359bac7 Add notes about variable names and shadowing (Pavel Janík) fd5654c Check and enable -Wshadow by default. (Pavel Janík)
| * Check and enable -Wshadow by default.Pavel Janík2016-09-221-0/+1
| |
* | Set minimum required Boost to 1.47.0fanquake2016-10-171-1/+4
| |
* | Merge #8813: bitcoind: Daemonize using daemon(3)Wladimir J. van der Laan2016-09-301-0/+3
|\ \ | | | | | | | | | a92bf4a bitcoind: Daemonize using daemon(3) (Matthew King)
| * | bitcoind: Daemonize using daemon(3)Matthew King2016-09-261-0/+3
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplified version of #8278. Assumes that every OS that (a) is supported by Bitcoin Core (b) supports daemonization has the `daemon()` function in its C library. - Removes the fallback path for operating systems that support daemonization but not `daemon()`. This prevents never-exercised code from ending up in the repository (see discussion here: https://github.com/bitcoin/bitcoin/pull/8278#issuecomment-242704745). - Removes the windows-specific path. Windows doesn't support `daemon()`, so it don't support daemonization there, automatically. Original code by Matthew King, adapted by Wladimir van der Laan.
* | Merge #8249: Enable (and check for) 64-bit ASLR on WindowsWladimir J. van der Laan2016-09-261-0/+1
|\ \ | |/ |/| | | | | 62c2915 build: supply `-Wl,--high-entropy-va` (Wladimir J. van der Laan) 9a75d29 devtools: Check for high-entropy ASLR in 64-bit PE executables (Wladimir J. van der Laan)
| * build: supply `-Wl,--high-entropy-va`Wladimir J. van der Laan2016-09-261-0/+1
| | | | | | | | | | This should enable high-entropy ASLR on 64-bit targets, for better mitigation of exploits.
* | Merge #8608: Install manpages via make install, also add some autogenerated ↵Wladimir J. van der Laan2016-09-131-1/+7
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | manpages d19583f improved gen-manpages.sh, includes bitcoin-tx and strips commit tag, now also runs binaries from build dir by default, added variables for more control (nomnombtc) 09546ca regenerated all manpages with commit tag stripped, also add bitcoin-tx (nomnombtc) ae6e754 change help string --enable-man to --disable-man (nomnombtc) a32c102 add conditional for --enable-man, default is yes (nomnombtc) dc84b6f add doc/man to subdir if configure flag --enable-man is set (nomnombtc) 00dba72 add doc/man/Makefile.am to include manpages (nomnombtc) eb5643b add autogenerated manpages by help2man (nomnombtc) 6edf2fd add gen-manpages.sh description to README.md (nomnombtc) d2cd9c0 add script to generate manpages with help2man (nomnombtc)
| * | change help string --enable-man to --disable-mannomnombtc2016-08-281-3/+2
| | |
| * | add conditional for --enable-man, default is yesnomnombtc2016-08-271-1/+8
| | |
* | | Merge #8563: Add configure check for -latomicWladimir J. van der Laan2016-09-091-0/+3
|\ \ \ | | | | | | | | | | | | 878faac Add configure check for -latomic (Anthony Towns)
| * | | Add configure check for -latomicAnthony Towns2016-08-231-0/+3
| |/ /
* / / build: Updates for OpenBSDWladimir J. van der Laan2016-08-281-1/+9
|/ / | | | | | | | | | | | | | | | | | | | | - LevelDB platform was not guessed correctly (it ended up defining `-DOS_OPENBSD59` instead of `-DOS_OPENBSD`) - On OpenBSD there is no convenience link from `python3.5` to `python3`: add detection for other python interpreter names. - If it has to guess the LevelDB OS, print a autoconf warning so that the user can check.
* | Merge #8504: test: Remove java comparison toolWladimir J. van der Laan2016-08-171-32/+0
|\ \ | | | | | | | | | | | | eb0c52e travis: Remove hostname hack (Wladimir J. van der Laan) 3c5251d test: Remove java comparison tool (Wladimir J. van der Laan)