From f212ec087037b5bb74700e6cce63c208bdbe8442 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Sun, 2 Oct 2022 22:39:52 +0200 Subject: Fix ublic/apple build for the fuse_parse_cmdline ABI symbol For __APPLE__ and __ULIBC__, which are assumed to not support versioned symbols, helper.c has a compat ABI symbol for fuse_parse_cmdline(). However that ABI symbol was conflicting with the API macro (which redirects to the right API function for recompilations against current libfuse). Additionally the parameter 'opts' had a typo and was called 'out_opts'. --- lib/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/meson.build') diff --git a/lib/meson.build b/lib/meson.build index ef0e11e..54d0759 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -2,7 +2,7 @@ libfuse_sources = ['fuse.c', 'fuse_i.h', 'fuse_loop.c', 'fuse_loop_mt.c', 'fuse_lowlevel.c', 'fuse_misc.h', 'fuse_opt.c', 'fuse_signals.c', 'buffer.c', 'cuse_lowlevel.c', 'helper.c', 'modules/subdir.c', 'mount_util.c', - 'fuse_log.c' ] + 'fuse_log.c', 'compat.c' ] if host_machine.system().startswith('linux') libfuse_sources += [ 'mount.c' ] -- cgit v1.2.3