aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_setattr.c
AgeCommit message (Collapse)AuthorLines
2025-01-03Fix libfuse build with FUSE_USE_VERSION 30Amir Goldstein-0/+3
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
2023-01-28Install a the configure_file (config.h) and use in headersBernd Schubert-1/+1
This addresses: https://github.com/libfuse/libfuse/issues/724 HAVE_LIBC_VERSIONED_SYMBOLS configures the library if to use versioned symbols and is set at meson configuration time. External filesystems (the main target, actually) include fuse headers and the preprocessor then acts on HAVE_LIBC_VERSIONED_SYMBOLS. Problem was now that 'config.h' was not distributed with libfuse and so HAVE_LIBC_VERSIONED_SYMBOLS was never defined with external tools and the preprocessor did the wrong decision. This commit also increases the the minimal meson version, as this depends on meson feature only available in 0.50 <quote 'meson' > WARNING: Project specifies a minimum meson_ version '>= 0.42' but uses features which were added in newer versions: * 0.50.0: {'install arg in configure_file'} </quote> Additionally the config file has been renamed to "fuse_config.h" to avoid clashes - 'config.h' is not very specific.
2020-03-13State GPL version in comment (#485)Dr. David Alan Gilbert-1/+1
IN a bunch of comments we say 'under the terms of the GNU GPL', make it clear this is GPLv2 (as LICENSE says). Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
2017-08-24Don't use -o auto_unmount under FreeBSD.Nikolaus Rath-0/+2
2017-05-24Make tests build on bsdBrian Naylor-0/+5
2016-11-06Added test for fchmodNikolaus Rath-0/+184
At the moment this test fails (cf. issue #62). If that gets fixed in the kernel, this test can be activated conditionally.