depends: libxcb: update to 1.16.1

This commit is contained in:
tobtoht 2024-03-03 15:43:35 +01:00
parent dd53dfac6e
commit 7e3f55e9bf
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
2 changed files with 6 additions and 4 deletions

View file

@ -1,8 +1,8 @@
package=libxcb
$(package)_version=1.16
$(package)_version=1.16.1
$(package)_download_path=https://xcb.freedesktop.org/dist
$(package)_file_name=libxcb-$($(package)_version).tar.xz
$(package)_sha256_hash=4348566aa0fbf196db5e0a576321c65966189210cb51328ea2bb2be39c711d71
$(package)_sha256_hash=f24d187154c8e027b358fc7cb6588e35e33e6a92f11c668fe77396a7ae66e311
$(package)_dependencies=xcb_proto libXau
$(package)_patches = remove_pthread_stubs.patch

View file

@ -1,10 +1,12 @@
Remove uneeded pthread-stubs dependency
diff --git a/configure b/configure
index 969e8ac..0ab13c7 100755
--- a/configure
+++ b/configure
@@ -20827,7 +20827,7 @@ fi
@@ -21483,7 +21483,7 @@ fi
NEEDED="xau >= 0.99.2"
case $host_os in
linux*|darwin*|solaris*|dragonfly*|freebsd*) ;;
linux*|darwin*|solaris*|dragonfly*|freebsd*|netbsd*) ;;
- *) NEEDED="$NEEDED pthread-stubs" ;;
+ *) NEEDED="$NEEDED" ;;
esac