aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-12-03 23:39:14 +0200
committerMarcoFalke <falke.marco@gmail.com>2020-12-10 13:54:46 +0100
commit96124a204193ed114ca9594df7d5151206990e91 (patch)
tree269fe2f483717ca4076136e68c4f4a39ea4dfd74
parent61e316e66168be593fcc90b90217062fa9d993dc (diff)
downloadbitcoin-96124a204193ed114ca9594df7d5151206990e91.tar.xz
build: Check that Homebrew's berkeley-db4 package is actually installed
Github-Pull: #20563 Rebased-From: d3ef947524a07f8d7fbad5b95781ab6cacb1cb49
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c689633dde..a7ee5625c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -646,9 +646,9 @@ case $host in
dnl It's safe to add these paths even if the functionality is disabled by
dnl the user (--without-wallet or --without-gui for example).
- bdb_prefix=$($BREW --prefix berkeley-db4 2>/dev/null)
qt5_prefix=$($BREW --prefix qt5 2>/dev/null)
- if test x$bdb_prefix != x && test "x$BDB_CFLAGS" = "x" && test "x$BDB_LIBS" = "x" && test "$use_bdb" != "no"; then
+ if $BREW list --versions berkeley-db4 >/dev/null && test "x$BDB_CFLAGS" = "x" && test "x$BDB_LIBS" = "x" && test "$use_bdb" != "no"; then
+ bdb_prefix=$($BREW --prefix berkeley-db4 2>/dev/null)
dnl This must precede the call to BITCOIN_FIND_BDB48 below.
BDB_CFLAGS="-I$bdb_prefix/include"
BDB_LIBS="-L$bdb_prefix/lib -ldb_cxx-4.8"