aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-09-19 20:26:51 +0100
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-09-19 20:26:51 +0100
commit893e2d66c72f06dc036cae1385d5826898ffdb81 (patch)
tree3a951e458619bb080a40e1a092f0bd1320a19ca3
parentf24673cc174297a2cbe452c8f5fd0956d8455fb9 (diff)
Fix versioned symbols in version script
According to "How to Write Shared Libraries" by Ulrich Drepper (https://www.akkadia.org/drepper/dsohowto.pdf), the version script should contain the exported name of the versioned symbol once in each tag for which it has been defined by .symver.
-rw-r--r--lib/fuse_versionscript5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript
index 849d42f..e52dd86 100644
--- a/lib/fuse_versionscript
+++ b/lib/fuse_versionscript
@@ -135,13 +135,16 @@ FUSE_3.0 {
FUSE_3.1 {
global:
fuse_lib_help;
- fuse_new_30;
fuse_invalidate_path;
+ fuse_new_30;
+ fuse_new;
} FUSE_3.0;
FUSE_3.2 {
global:
+ fuse_session_loop_mt;
fuse_session_loop_mt_31;
+ fuse_loop_mt;
fuse_loop_mt_31;
} FUSE_3.1;