Are you running an old (Tiger) version of MacFUSE on Leopard?
Jeff Bone wrote:
> On Jan 27, 2008, at 1:53 PM, Jeff Bone wrote:
>
> > On Jan 26, 2008, at 6:35 PM, David wrote:
> >
> >> Black:example David$ python
> >> Python 2.5.1 (r251:54863, Oct 5 2007, 21:08:09)
> >> [GCC 4.0.1 (Apple Inc. build 5465)] on darwin
> >> Type "help", "copyright", "credits" or "license" for more
> >> information.
> >>>>> import fuse
> >> Traceback (most recent call last):
> >> File "<stdin>", line 1, in <module>
> >> File "/Library/Python/2.5/site-packages/fuse.py", line 26, in
> >> <module>
> >> from fuseparts._fuse import main, FuseGetContext, FuseInvalidate
> >> ImportError: dlopen(/Library/Python/2.5/site-packages/fuseparts/
> >> _fusemodule.so, 2): Symbol not found: _iconv
> >> Referenced from: /usr/local/lib/libfuse.0.dylib
> >> Expected in: flat namespace
> >
> > FWIW, I'm having the same problem...
>
> Okay, I solved the "Symbol not found: _iconv" problem. I downloaded
> a fresh (2.0) Python FUSE bindings and added a line to setup.py as
> follows:
>
> libsonly.append("pthread") # <-- existing line
> libsonly.append("iconv") # <-- new line
>
> However, now when I run gmailfs I'm getting numerous lines of the form:
>
> The process has forked and you cannot use this CoreFoundation
> functionality safely. You MUST exec().
> Break on
> __THE_PROCESS_HAS_FORKED_AND_YOU_CANNOT_USE_THIS_COREFOUNDATION_FUNCTION
> ALITY___YOU_MUST_EXEC__() to debug.
>
> Despite the errors the filesystem seems to mount as expected and is
> usable.
>
> jb
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"macfuse-devel" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/macfuse-devel?hl=en
-~----------~----~----~----~------~----~------~--~---