mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
746ff12632
1ba49bcdc216162f513e74e371ee9f26418a390e build: pass --enable-option-checking to applicable packages (fanquake) bcff8e21b1bb360c3cf1e1d2e1a2a54ec7581720 build: only pass --disable-dependency-tracking to packages that understand it (fanquake) Pull request description: By blanket passing `--disable-dependency-tracking` to all depends packages we end up with warnings (i.e in `bdb` or `freetype`) like: ```bash configure: WARNING: unrecognized options: --disable-dependency-tracking ``` Instead, only pass it to packages that actually understand it. Related to https://github.com/bitcoin/bitcoin/issues/16354. More info on `--disable-dependency-tracking` available [here](https://www.gnu.org/software/automake/manual/html_node/Dependency-Tracking.html). This PR also adds `--enable-option-checking` as a configure option to all applicable packages. ACKs for top commit: laanwj: ACK 1ba49bcdc216162f513e74e371ee9f26418a390e theuni: ACK 1ba49bcdc216162f513e74e371ee9f26418a390e Tree-SHA512: 6d3143ad5f5d1abed5e0a0b2ffbb4323f21c7bf24b0b8df26fb1b3cd16cf5309bbb830aa5aaec99164d5bbe8e9c62b97aa3e97ee1ddc2c7612bf8ff88a63885e
50 lines
2.1 KiB
Makefile
50 lines
2.1 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
|
|
|
|
# Don't install xcb headers to the default path in order to work around a qt
|
|
# build issue: https://bugreports.qt.io/browse/QTBUG-34748
|
|
# When using qt's internal libxcb, it may end up finding the real headers in
|
|
# depends staging. Use a non-default path to avoid that.
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf) --includedir=$(host_prefix)/include/xcb-shared
|
|
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/man share/doc lib/*.la
|
|
endef
|