aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-10-28 19:20:35 -0700
committerNikolaus Rath <Nikolaus@rath.org>2020-10-29 10:59:23 +0000
commit4ebb018e78b53a8afe0368e7cd7a17a67c52e3df (patch)
treed647de2e696f4ce9b40b632a666176758baa709c /lib
parent0105e061b97a97d9836128aea5bcdfc9593c9b82 (diff)
downloadlibfuse-4ebb018e78b53a8afe0368e7cd7a17a67c52e3df.tar.gz
remove old uclibc hack
This actually prevents sshfs linking to it as fuse_new becomes unavailable. According to the git history, this seems to predate 2006. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/fuse_misc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/fuse_misc.h b/lib/fuse_misc.h
index a8b5961..f384aea 100644
--- a/lib/fuse_misc.h
+++ b/lib/fuse_misc.h
@@ -10,10 +10,9 @@
/*
Versioned symbols cannot be used in some cases because it
- - confuse the dynamic linker in uClibc
- not supported on MacOSX (in MachO binary format)
*/
-#if (!defined(__UCLIBC__) && !defined(__APPLE__))
+#ifndef __APPLE__
# if HAVE_SYMVER_ATTRIBUTE
# define FUSE_SYMVER(sym1, sym2) __attribute__ ((symver (sym2)))
# else