mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
7fcb8f53ed
c295cba5a2f934e51a7c8610ab4c58b8e9d56619 depends: zeromq: disable draft classes and methods (fanquake) 0072237b9e33e0b89f6c9f51dd0b946fa89a6134 depends: xproto: configure flags cleanup (fanquake) 6a8ada3a4f67affcf0ef7452e206083d7b58b2bc depends: qrencode: configure flags cleanup (fanquake) 86beb8cdc4e312bd0bed2cbb273aebb792be2747 depends: fontconfig: configure flags cleanup (fanquake) e656d95ec74336c2bd93bd387f67aeb6aed4dc40 depends: libxcb: configure flags cleanup (fanquake) e439388b352b7dfbf2e00c6ba2970fed0a4a5554 depends: libXau: configure flags cleanup (fanquake) Pull request description: Related to #16354. This PR adds additional configure flags to packages in depends to explicitly disable features we aren't using; similar to #16183. It also fixes passing `--without-tools` to `qrencode`. I've added `--disable-drafts` to `zeromq`: ```bash Build and install draft classes and methods [default=yes] ``` I'm not entirely sure how far we want to take this. i.e in the `zeromq` package we explicitly pass `--without-libsodium`, even though it's disabled by default. Do we also want to explicitly pass all the other `--without` flags? : ```bash --with-libgssapi_krb5 require libzmq build with libgssapi_krb5 [default=no] --with-libsodium use libsodium instead of built-in tweetnacl [default=no] --with-pgm build libzmq with PGM extension. Requires pkg-config [default=no] --with-norm build libzmq with NORM protocol extension, optionally specifying norm path [default=no] --with-vmci build libzmq with VMCI transport [default=no] ``` ACKs for top commit: dongcarl: ACK c295cba5a2f934e51a7c8610ab4c58b8e9d56619 Tree-SHA512: df6d38b863b4008ed2cb06c97eb0e21eaa4b5fde552876065ba7f3c87bf6e372e5b954a51bf3fde2151cfb6d2c022227d34337fc6e50ce0caa1d518abbd2412a
48 lines
1.9 KiB
Makefile
48 lines
1.9 KiB
Makefile
package=libxcb
|
|
$(package)_version=1.10
|
|
$(package)_download_path=http://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
|
|
# 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
|
|
|
|
define $(package)_preprocess_cmds
|
|
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
|
|
endef
|