I am trying a possibly difficult road here. I am trying to build pythonwebkit on Mac OS X. Right now I am stuck with a linker error for GObjectIntrospection (a dependency of pygtk-2.0, that is in itself a dependency of pythonwebkit). There is an issue with unresolved symbols in libcmph ( GObjectIntrospection includes its own copy of libcmph).
I don't know enough about static libraries and linking. There unresolved symbols *are* in the text section of the library that the linker is trying to link into the test program (one of the GOobjectIntrospection test programs), but gcc insists they are unresolved. If I compile the standalone libcmph, and do the linking by hand to the standalone libcmph (rather than using make), there are no unresolved symbols. I am assuming something is amiss with the build process as the library tool nm, shows the unresolved symbols exist in the text section of both libraries. Anyhow, I probably should post this to the gtk mailing list... --Jeff

