> Seems you've changed ABI in 2.5.x version of FUSE, but you left old SONAME > version, which causes many issues when filesystems that still want to work > with such library. > > Please take a look at http://bugs.debian.org/352631 > > Could you please update your SONAME version to reflect ABI changes?
It's a bug in the versioning of the fuse_mount() symbol. The following patch should fix it. Thanks for the report, Miklos Index: lib/mount.c =================================================================== RCS file: /cvsroot/fuse/fuse/lib/mount.c,v retrieving revision 1.24 diff -u -r1.24 mount.c --- lib/mount.c 9 Jan 2006 11:33:04 -0000 1.24 +++ lib/mount.c 19 Feb 2006 17:56:48 -0000 @@ -291,4 +291,4 @@ return fuse_mount_compat22(mountpoint, NULL); } -__asm__(".symver fuse_mount_compat22,fuse_mount@"); +__asm__(".symver fuse_mount_compat22,[EMAIL PROTECTED]"); -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]