From 7f5ee31303e943f920f8c576c9ad3bd870534a4a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 7 Jan 2026 10:55:44 +0200 Subject: [PATCH] Prevent libfuse3 from linking to io-uring and numactl --- pkg.info | 2 +- source.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg.info b/pkg.info index 599d5fa..36dc30d 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: fuse3 description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface version: 3.18.1 -revision: 1 +revision: 2 url: https://github.com/libfuse/libfuse license: GPL2-or-later,LGPL2.1-or-later architecture: any diff --git a/source.sh b/source.sh index f3a64f0..83926f3 100644 --- a/source.sh +++ b/source.sh @@ -5,7 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release build + meson setup --prefix=/usr --libdir=/usr/lib -Denable-io-uring=false build meson compile -C build }