diff options
| author | Patrick Strateman <[email protected]> | 2017-07-02 02:48:00 +0000 |
|---|---|---|
| committer | Patrick Strateman <[email protected]> | 2017-07-02 02:48:00 +0000 |
| commit | 1cc251f50fb2f9cffa762b28e5d8685af4273663 (patch) | |
| tree | 0538b43f88aba34efc27d782785d23f93c78b25a | |
| parent | Merge #10192: Cache full script execution results in addition to signatures (diff) | |
| download | discoin-1cc251f50fb2f9cffa762b28e5d8685af4273663.tar.xz discoin-1cc251f50fb2f9cffa762b28e5d8685af4273663.zip | |
Explicitly search for bdb5.3.
Some systems do not symlink the major version to the minor version.
| -rw-r--r-- | build-aux/m4/bitcoin_find_bdb48.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/m4/bitcoin_find_bdb48.m4 b/build-aux/m4/bitcoin_find_bdb48.m4 index 980f1e8f1..b9bf7bf46 100644 --- a/build-aux/m4/bitcoin_find_bdb48.m4 +++ b/build-aux/m4/bitcoin_find_bdb48.m4 @@ -12,7 +12,7 @@ AC_DEFUN([BITCOIN_FIND_BDB48],[ bdbpath=X bdb48path=X bdbdirlist= - for _vn in 4.8 48 4 5 ''; do + for _vn in 4.8 48 4 5 5.3 ''; do for _pfx in b lib ''; do bdbdirlist="$bdbdirlist ${_pfx}db${_vn}" done |