You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
933 B

  1. From 4ebb018e78b53a8afe0368e7cd7a17a67c52e3df Mon Sep 17 00:00:00 2001
  2. From: Rosen Penev <rosenp@gmail.com>
  3. Date: Wed, 28 Oct 2020 19:20:35 -0700
  4. Subject: [PATCH] remove old uclibc hack
  5. This actually prevents sshfs linking to it as fuse_new becomes
  6. unavailable.
  7. According to the git history, this seems to predate 2006.
  8. Signed-off-by: Rosen Penev <rosenp@gmail.com>
  9. ---
  10. lib/fuse_misc.h | 3 +--
  11. 1 file changed, 1 insertion(+), 2 deletions(-)
  12. diff --git a/lib/fuse_misc.h b/lib/fuse_misc.h
  13. index a8b59617..f384aeab 100644
  14. --- a/lib/fuse_misc.h
  15. +++ b/lib/fuse_misc.h
  16. @@ -10,10 +10,9 @@
  17. /*
  18. Versioned symbols cannot be used in some cases because it
  19. - - confuse the dynamic linker in uClibc
  20. - not supported on MacOSX (in MachO binary format)
  21. */
  22. -#if (!defined(__UCLIBC__) && !defined(__APPLE__))
  23. +#ifndef __APPLE__
  24. # if HAVE_SYMVER_ATTRIBUTE
  25. # define FUSE_SYMVER(sym1, sym2) __attribute__ ((symver (sym2)))
  26. # else