head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2026.05.09.20.00.28; author vins; state Exp; branches; next ; commitid laUNdDpy1oiC3bFG; desc @@ 1.1 log @filesystems/fuse3: initial import Import fuse-3.18.2 as filesystems/fuse3. FUSE (Filesystem in Userspace) is a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. Fuse also aims to provide a secure method for non privileged users to create and mount their own filesystem implementations. @ text @$NetBSD: patch-test_meson.build,v 1.1 2026/05/06 17:08:49 vins Exp $ Requires O_PATH and other Linuxisms. --- test/meson.build.orig 2026-05-06 15:59:19.869945743 +0000 +++ test/meson.build @@@@ -7,9 +7,11 @@@@ foreach prog: [ 'test_write_cache', 'tes dependencies: thread_dep, install: false) endforeach -td += executable('test_syscalls', 'test_syscalls.c', - include_directories: include_dirs, - install: false) +if platform == 'linux' + td += executable('test_syscalls', 'test_syscalls.c', + include_directories: include_dirs, + install: false) +endif td += executable('readdir_inode', 'readdir_inode.c', include_directories: include_dirs, install: false) @