mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
4459e60acc
e8fabd9253400a7c3fe45b34bc572eb00ff5522d build: prune dbus from depends (fanquake)
Pull request description:
Since #8210 (59d063d076
), we've been passing `-dbus-runtime` when configuring Qt.
```
qtbase-opensource-src-5.9.7 $ ./configure -h | grep -i dbus
-no-dbus ............. Do not build the Qt D-Bus module
-dbus-linked ......... Build Qt D-Bus and link to libdbus-1 [auto]
-dbus-runtime ........ Build Qt D-Bus and dynamically load libdbus-1 [no]
```
This means we don't actually seem to be using the `D-Bus` we build in depends. This was pointed out by theuni at the time, [here](https://github.com/bitcoin/bitcoin/pull/7993#issuecomment-223114395) and [here](https://github.com/bitcoin/bitcoin/pull/8210#issuecomment-226930545), but was never followed up. dongcarl also bought it up as part of #16150.
I've tested building and running `bitcoin-qt` using depends on Debian. Needs further testing.
ACKs for top commit:
laanwj:
code review ACK e8fabd9253400a7c3fe45b34bc572eb00ff5522d
Tree-SHA512: 164e6e52b6f97c04aef42bd185e2a157bc1a42103840f9404c5a795749f45a8c2c35f35873395a3a56398b3cd5955496b90d9c885d929b434c9bc871695abe20
34 lines
774 B
Makefile
34 lines
774 B
Makefile
packages:=boost libevent gmp backtrace
|
|
|
|
qt_linux_packages:=qt expat libxcb xcb_proto libXau xproto freetype fontconfig libxkbcommon
|
|
|
|
qrencode_linux_packages = qrencode
|
|
qrencode_android_packages = qrencode
|
|
qrencode_darwin_packages = qrencode
|
|
qrencode_mingw32_packages = qrencode
|
|
|
|
qt_android_packages=qt
|
|
qt_darwin_packages=qt
|
|
qt_mingw32_packages=qt
|
|
|
|
bdb_packages=bdb
|
|
sqlite_packages=sqlite
|
|
|
|
zmq_packages=zeromq
|
|
|
|
upnp_packages=miniupnpc
|
|
natpmp_packages=libnatpmp
|
|
|
|
darwin_native_packages = native_ds_store native_mac_alias
|
|
|
|
$(host_arch)_$(host_os)_native_packages += native_b2
|
|
|
|
ifneq ($(build_os),darwin)
|
|
darwin_native_packages += native_cctools native_libtapi native_libdmg-hfsplus
|
|
|
|
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
|
|
darwin_native_packages+= native_clang
|
|
endif
|
|
|
|
endif
|