On Wed, 2006-05-17 at 09:27 +0200, Ralf Stephan wrote:
You wrote
Have we verified that 2.0.11 + gcc-4.0.2 works?
Jon said so IIRC. I have verified 2.0.17 + 4.0.2.
Inkscape works with 2.0.17 and gcc-4.1.0 (FC5) with the following changes to get it to compile:
Index: src/removeoverlap/constraint.h =================================================================== --- src/removeoverlap/constraint.h (revision 11817) +++ src/removeoverlap/constraint.h (working copy) @@ -26,7 +26,7 @@ double lm; Constraint(Variable *left, Variable *right, double gap, bool equality=fa lse); ~Constraint(); - inline double Constraint::slack() const { return right->position() - gap - left->position(); } + inline double slack() const { return right->position() - gap - left->pos ition(); } long timeStamp; bool active; bool visited; Index: src/removeoverlap/variable.h =================================================================== --- src/removeoverlap/variable.h (revision 11817) +++ src/removeoverlap/variable.h (working copy) @@ -39,7 +39,7 @@ , visited(false) { } - inline double Variable::position() const { + inline double position() const { return block->posn+offset; } //double position() const;