Skip to content

Commit d23b0a2

Browse files
committed
depends: always use static qt5 for linux
1 parent 3448b13 commit d23b0a2

3 files changed

Lines changed: 1 addition & 8 deletions

File tree

depends/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ SDK_PATH ?= $(BASEDIR)/SDKs
66
NO_QT ?=
77
NO_WALLET ?=
88
NO_UPNP ?=
9-
USE_LINUX_STATIC_QT5 ?=
109
FALLBACK_DOWNLOAD_PATH ?= https://bitcoincore.org/depends-sources
1110

1211
BUILD = $(shell ./config.guess)

depends/README.usage

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ NO_QT: Don't download/build/cache qt and its dependencies
2323
NO_WALLET: Don't download/build/cache libs needed to enable the wallet
2424
NO_UPNP: Don't download/build/cache packages needed for enabling upnp
2525
DEBUG: disable some optimizations and enable more runtime checking
26-
USE_LINUX_STATIC_QT5: Build a static qt5 rather than shared qt4. Linux only.
2726

2827
If some packages are not built, for example 'make NO_WALLET=1', the appropriate
2928
options will be passed to bitcoin's configure. In this case, --disable-wallet.

depends/packages/packages.mk

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@ native_packages := native_ccache native_comparisontool
44
qt_native_packages = native_protobuf
55
qt_packages = qrencode protobuf
66

7-
qt46_linux_packages = qt46 expat dbus libxcb xcb_proto libXau xproto freetype libX11 xextproto libXext xtrans libICE libSM
8-
qt5_linux_packages= qt expat dbus libxcb xcb_proto libXau xproto freetype fontconfig libX11 xextproto libXext xtrans
9-
7+
qt_linux_packages= qt expat dbus libxcb xcb_proto libXau xproto freetype fontconfig libX11 xextproto libXext xtrans
108
qt_darwin_packages=qt
119
qt_mingw32_packages=qt
1210

13-
qt_linux_$(USE_LINUX_STATIC_QT5):=$(qt5_linux_packages)
14-
qt_linux_:=$(qt46_linux_packages)
15-
qt_linux_packages:=$(qt_linux_$(USE_LINUX_STATIC_QT5))
1611

1712
wallet_packages=bdb
1813

0 commit comments

Comments
 (0)