Make fuse_main_real() not symboled
authorBernd Schubert <bernd@bsbernd.com>
Sat, 4 Jan 2025 22:18:14 +0000 (23:18 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Mon, 10 Feb 2025 15:56:45 +0000 (16:56 +0100)
commit1d134a0ccf8fe95ceb1ea3cdd723cb30c5cfcdf1
tree33a262883950fab4717f531084c63a9edd235ded
parent0cab87aeff36503a74222e181d5206b2c77c9bb9
Make fuse_main_real() not symboled

Addresses https://github.com/libfuse/libfuse/issues/1092

We actually don't need to make fuse_main_real() symboled, as it
is not part of the official API.

The inlined function now always calls into fuse_main_real_317
and the compat ABI function (which should also be available
for dlopen/dlsym) is now always compiled, independent if the
compiler/linker support versioned symbols.

Additionally, fuse_main_real() is also declared as inlined
function and a warning message is created when that function
is called.

Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
include/fuse.h
lib/compat.c
lib/fuse_versionscript
lib/helper.c