Fix ublic/apple build for the fuse_parse_cmdline ABI symbol
authorBernd Schubert <bschubert@ddn.com>
Sun, 2 Oct 2022 20:39:52 +0000 (22:39 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 4 Jan 2023 15:27:21 +0000 (15:27 +0000)
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/compat.c [new file with mode: 0644]
lib/helper.c
lib/meson.build

diff --git a/lib/compat.c b/lib/compat.c
new file mode 100644 (file)
index 0000000..bdff5c9
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+  FUSE: Filesystem in Userspace
+  Copyright (C) 2001-2007  Miklos Szeredi <miklos@szeredi.hu>
+
+  Helper functions to create (simple) standalone programs. With the
+  aid of these functions it should be possible to create full FUSE
+  file system by implementing nothing but the request handlers.
+
+  This program can be distributed under the terms of the GNU LGPLv2.
+  See the file COPYING.LIB.
+*/
+
+/* Description:
+    This file has compatibility symbols for platforms that do not
+    support version symboling
+*/
+
+#include "config.h"
+#include "fuse_i.h"
+#include "fuse_misc.h"
+#include "fuse_opt.h"
+#include "fuse_lowlevel.h"
+#include "mount_util.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <stddef.h>
+#include <unistd.h>
+#include <string.h>
+#include <limits.h>
+#include <errno.h>
+#include <sys/param.h>
+
+/**
+ * Compatibility ABI symbol for systems that do not support version symboling
+ */
+#if (defined(__UCLIBC__) || defined(__APPLE__))
+/* With current libfuse fuse_parse_cmdline is a macro pointing to the
+ * versioned function. Here in this file we need to provide the ABI symbol
+ * and the redirecting macro is conflicting.
+ */
+#ifdef fuse_parse_cmdline
+#undef fuse_parse_cmdline
+#endif
+int fuse_parse_cmdline_30(struct fuse_args *args,
+                           struct fuse_cmdline_opts *opts);
+int fuse_parse_cmdline(struct fuse_args *args,
+                      struct fuse_cmdline_opts *opts);
+int fuse_parse_cmdline(struct fuse_args *args,
+                      struct fuse_cmdline_opts *opts)
+{
+       return fuse_parse_cmdline_30(args, opts);
+}
+#endif
+
+
index 84013b91cb49fd9bd2d8e85bd562cc92d18ca040..c3796c1b50e227855afc06981f56f9407c1ae690 100644 (file)
@@ -251,18 +251,6 @@ int fuse_parse_cmdline_30(struct fuse_args *args,
        return rc;
 }
 
-/**
- * Compatibility ABI symbol for systems that do not support version symboling
- */
-#if (defined(__UCLIBC__) || defined(__APPLE__))
-int fuse_parse_cmdline(struct fuse_args *args,
-                      struct fuse_cmdline_opts *opts)
-{
-       return fuse_parse_cmdline_30(args, out_opts);
-}
-#endif
-
-
 int fuse_daemonize(int foreground)
 {
        if (!foreground) {
index ef0e11ebde75c9356fc5144f6b3335eb6d569ab8..54d07597c519cd4a8b4eee4ba8f4b827537bd90e 100644 (file)
@@ -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' ]