Split config.h into private and public config
authorBernd Schubert <bschubert@ddn.com>
Tue, 7 Feb 2023 22:06:42 +0000 (23:06 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 9 Feb 2023 10:21:29 +0000 (10:21 +0000)
commitd7560cc9916b086bfe5d86459cc9f04033edd904
treecd86f44f9ec63e666a272af3388f42f8f21d3ef6
parentbecc030e94a1ac7a5af2c530cd7526aadfaac3f5
Split config.h into private and public config

This addresses https://github.com/libfuse/libfuse/issues/729

commit db35a37def14b72181f3630efeea0e0433103c41 introduced a public
config.h (rename to fuse_config.h to avoid conflicts) that
was installed with the package and included by libfuse users
through fuse_common.h. Probablem is that this file does not have
unique defines so that they are unique to libfuse - on including
the file conflicts with libfuse users came up.

In principle all defines could be prefixed, but then most of them
are internal for libfuse compilation only. So this splits out
publically required defines to a new file 'libfuse_config.h'
and changes back to include of "fuse_config.h" only when
HAVE_LIBFUSE_PRIVATE_CONFIG_H is defined.

This also renames HAVE_LIBC_VERSIONED_SYMBOLS to
LIBFUSE_BUILT_WITH_VERSIONED_SYMBOLS, as it actually
better explains for libfuse users what that variable
is for.
include/fuse.h
include/fuse_common.h
include/fuse_lowlevel.h
lib/compat.c
lib/fuse_misc.h
lib/meson.build
meson.build