mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-21 14:34:49 +01:00
build: disable libxcb extensions
Because we pass -qt-xcb to Qt, it will compile in a set of xcb helper libraries and extensions. So skip building all of the libxcb extensions when we build libcxb in depends. More info is available here: https://doc.qt.io/qt-5.9/linux-requirements.html
This commit is contained in:
parent
fbe4b7665b
commit
3303124960
1 changed files with 12 additions and 0 deletions
|
@ -7,6 +7,18 @@ $(package)_dependencies=xcb_proto libXau
|
||||||
|
|
||||||
define $(package)_set_vars
|
define $(package)_set_vars
|
||||||
$(package)_config_opts=--disable-static
|
$(package)_config_opts=--disable-static
|
||||||
|
# Because we pass -qt-xcb to Qt, it will compile in a set of xcb helper libraries and extensions,
|
||||||
|
# so we skip building all of the extensions here.
|
||||||
|
# More info is available from: https://doc.qt.io/qt-5.9/linux-requirements.html
|
||||||
|
$(package)_config_opts += --disable-composite --disable-damage --disable-dpms
|
||||||
|
$(package)_config_opts += --disable-dri2 --disable-dri3 --disable-glx
|
||||||
|
$(package)_config_opts += --disable-present --disable-randr --disable-record
|
||||||
|
$(package)_config_opts += --disable-render --disable-resource --disable-screensaver
|
||||||
|
$(package)_config_opts += --disable-shape --disable-shm --disable-sync
|
||||||
|
$(package)_config_opts += --disable-xevie --disable-xfixes --disable-xfree86-dri
|
||||||
|
$(package)_config_opts += --disable-xinerama --disable-xinput --disable-xkb
|
||||||
|
$(package)_config_opts += --disable-xprint --disable-selinux --disable-xtest
|
||||||
|
$(package)_config_opts += --disable-xv --disable-xvmc
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define $(package)_preprocess_cmds
|
define $(package)_preprocess_cmds
|
||||||
|
|
Loading…
Add table
Reference in a new issue