Kees Cook wrote:
On Fri, Jan 28, 2005 at 07:39:55PM -0800, Kees Cook wrote:
Is this the result hiding functions into object methods? Updating the
Okay, I spoke too soon, I got it figured out. Looks like ming doesn't like the inlined virtual functions or something. I replaced the function calls with object method calls, and it compiled.
Actually, I think that it is a bit simpler than that. The W32 build does not use automake/autoconf, of course. Main.cpp was left out of the dependency tree, because it has an 'int main()' function, and we need to avoid multiple definitions with it, Inkview, or whetever other client calls the Inkscape lib.
An unfortunate side-effect of this is that main.cpp is not aware of changes in the rest of the tree, so that an old main.o might be looking for things that no longer exist. Just delete main.o and recompile.
Bob