On Mon, 2008-11-24 at 13:26 +0700, Preben Soeberg wrote:
Have you any idea, what went wrong with my compilation of simple-node.cpp?
And why I can compile it now without any problem?
When I look in the source now, I can't see any changes done that should trigger the error, I mentioned in the other post. Could there have been some kind of glitch in SVN?
I imagine that it was more a glitch in your build. That's one of the reason that I always build in another directory. Here's my basic workflow.
$ bzr branch trunk mywork $ cd mywork $ ./autogen.sh $ mkdir build $ cd build $ ../configure --prefix=`pwd`/../install --enable-inkboard $ nice make -j 2 install
That puts all of the built files in the "build" directory but also sets up a clean install that isn't connected to the other instances of Inkscape on my system.
--Ted