mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-19 18:09:47 +01:00
06cd0da21f
remove fix_configure_mac.patch Fixed upstream: https://bugreports.qt.io/browse/QTBUG-67286 remove fix_riscv64_arch.patch Was fixed upstream in 6a39e49a6cdeb28a04a3657bb6a22f848d5dfa9d remove fix_rcc_determinism.patch Fixed upstream in https://bugreports.qt.io/browse/QTBUG-62511 remove freetype_back_compat.patch By the time we ship a release with Qt 5.12, we'll certainly no-longer be supporting Ubuntu 14.04 and Ubuntu 16.04 ships with FreeType 2.6.1, which is new enough that using the symbol is no-longer an issue. The renaming of FT_Get_X11_Font_Format() happened in FreeType 2.6 remove xkb-default.patch This was removed upstream in d5abf545971da717014d316127045fc19edbcd65 Co-authored-by: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com>
45 lines
1.7 KiB
Makefile
45 lines
1.7 KiB
Makefile
package=libxcb
|
|
$(package)_version=1.10
|
|
$(package)_download_path=https://xcb.freedesktop.org/dist
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=98d9ab05b636dd088603b64229dd1ab2d2cc02ab807892e107d674f9c3f2d5b5
|
|
$(package)_dependencies=xcb_proto libXau
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-static --disable-build-docs --without-doxygen --without-launchd
|
|
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
|
|
# 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-sync
|
|
$(package)_config_opts += --disable-xevie --disable-xfixes --disable-xfree86-dri
|
|
$(package)_config_opts += --disable-xinerama --disable-xinput
|
|
$(package)_config_opts += --disable-xprint --disable-selinux --disable-xtest
|
|
$(package)_config_opts += --disable-xv --disable-xvmc
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub build-aux && \
|
|
sed "s/pthread-stubs//" -i configure
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm -rf share lib/*.la
|
|
endef
|