Install a the configure_file (config.h) and use in headers
authorBernd Schubert <bschubert@ddn.com>
Fri, 27 Jan 2023 20:54:48 +0000 (21:54 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 28 Jan 2023 09:35:34 +0000 (09:35 +0000)
commitdb35a37def14b72181f3630efeea0e0433103c41
tree95a70e1bf36e968dcd6218731e6b061b3ceedae2
parente42b972271dfd70735eada21e7770a19effe7fd4
Install a the configure_file (config.h) and use in headers

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.
29 files changed:
example/passthrough.c
example/passthrough_fh.c
example/passthrough_hp.cc
example/passthrough_ll.c
example/poll.c
example/poll_client.c
example/printcap.c
include/fuse_common.h
lib/buffer.c
lib/compat.c
lib/cuse_lowlevel.c
lib/fuse.c
lib/fuse_loop.c
lib/fuse_loop_mt.c
lib/fuse_lowlevel.c
lib/fuse_opt.c
lib/fuse_signals.c
lib/helper.c
lib/modules/iconv.c
lib/modules/subdir.c
lib/mount.c
lib/mount_util.c
meson.build
test/test_setattr.c
test/test_syscalls.c
test/test_write_cache.c
test/travis-install.sh
util/fusermount.c
util/mount.fuse.c