remove old uclibc hack
authorRosen Penev <rosenp@gmail.com>
Thu, 29 Oct 2020 02:20:35 +0000 (19:20 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 29 Oct 2020 10:59:23 +0000 (10:59 +0000)
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>
lib/fuse_misc.h

index a8b59617f3b7ae768442b023cf972d65460b211a..f384aeab9e21760b019237c1190136c59d9e4d04 100644 (file)
 
 /*
   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