aboutsummaryrefslogtreecommitdiff
path: root/depends
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2021-03-03 15:41:14 +0800
committerfanquake <fanquake@gmail.com>2021-03-03 15:48:11 +0800
commitfca3e98f64f0c89674414a18943591a04d61ccbf (patch)
treeaca4f71056fd90981bfae2884f31ac77cfe7b8d1 /depends
parent4f223e93e9c097c96a1655f9125aec463892da9c (diff)
parent76f52e3da359c3738d36bc20ac13a8ccd17e4e9f (diff)
downloadbitcoin-fca3e98f64f0c89674414a18943591a04d61ccbf.tar.xz
Merge #18298: build: Fix Qt processing of configure script for depends with DEBUG=1
76f52e3da359c3738d36bc20ac13a8ccd17e4e9f build: Fix Qt processing of configure script for depends with DEBUG=1 (Hennadii Stepanov) Pull request description: This PR: - makes the `configure` script correctly pickup Qt if depends is built with `DEBUG=1`: - for Windows -- fix #19266 - for macOS -- fix #16391 - is an alternative to #18117 (without downsides) ACKs for top commit: fanquake: ACK 76f52e3da359c3738d36bc20ac13a8ccd17e4e9f. Tested native darwin, and darwin/win cross compile with `DEBUG=1`. Tree-SHA512: 8fde99302b4b06faf109315bddba9e3063b156c50f8f9863c2bd51718538c719429a63fdced071730c18022f2e559d3b25c1dcec3efa81fe79f657253680956a
Diffstat (limited to 'depends')
-rw-r--r--depends/config.site.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/depends/config.site.in b/depends/config.site.in
index 391767357a..f1a59a5861 100644
--- a/depends/config.site.in
+++ b/depends/config.site.in
@@ -54,6 +54,10 @@ if test -z "$with_gui" && test -n "@no_qt@"; then
with_gui=no
fi
+if test -n "@debug@" && test -z "@no_qt@" && test "x$with_gui" != xno; then
+ with_gui=qt5_debug
+fi
+
if test -z "$enable_zmq" && test -n "@no_zmq@"; then
enable_zmq=no
fi