mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
libxcb: use a patch instead of sed
To remove the unneeded pthread-stubs requirements.
This commit is contained in:
parent
1abbae65eb
commit
8f1ff487b3
2 changed files with 14 additions and 1 deletions
|
@ -4,6 +4,7 @@ $(package)_download_path=https://xcb.freedesktop.org/dist
|
|||
$(package)_file_name=$(package)-$($(package)_version).tar.xz
|
||||
$(package)_sha256_hash=a55ed6db98d43469801262d81dc2572ed124edc3db31059d4e9916eb9f844c34
|
||||
$(package)_dependencies=xcb_proto libXau
|
||||
$(package)_patches = remove_pthread_stubs.patch
|
||||
|
||||
define $(package)_set_vars
|
||||
$(package)_config_opts=--disable-static --disable-devel-docs --without-doxygen --without-launchd
|
||||
|
@ -20,7 +21,7 @@ endef
|
|||
|
||||
define $(package)_preprocess_cmds
|
||||
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub build-aux && \
|
||||
sed "s/pthread-stubs//" -i configure
|
||||
patch -p1 -i $($(package)_patch_dir)/remove_pthread_stubs.patch
|
||||
endef
|
||||
|
||||
define $(package)_config_cmds
|
||||
|
|
12
depends/patches/libxcb/remove_pthread_stubs.patch
Normal file
12
depends/patches/libxcb/remove_pthread_stubs.patch
Normal file
|
@ -0,0 +1,12 @@
|
|||
Remove uneeded pthread-stubs dependency
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -19695,7 +19695,7 @@ fi
|
||||
NEEDED="xau >= 0.99.2"
|
||||
case $host_os in
|
||||
linux*) ;;
|
||||
- *) NEEDED="$NEEDED pthread-stubs" ;;
|
||||
+ *) NEEDED="$NEEDED" ;;
|
||||
esac
|
||||
|
||||
pkg_failed=no
|
Loading…
Reference in a new issue