From: keescook Date: Mon, 11 Feb 2008 08:10:22 +0000 (+0000) Subject: remaining g++ 4.3 compilation fix-ups X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=54f0b322de8b5934619f28f4971e5c1c95c14ffe;p=inkscape.git remaining g++ 4.3 compilation fix-ups --- diff --git a/src/display/nr-filter-slot.cpp b/src/display/nr-filter-slot.cpp index 0cbf88e02..76beb12f5 100644 --- a/src/display/nr-filter-slot.cpp +++ b/src/display/nr-filter-slot.cpp @@ -14,6 +14,7 @@ */ #include +#include #include "display/nr-arena-item.h" #include "display/nr-filter-types.h" diff --git a/src/libavoid/makepath.cpp b/src/libavoid/makepath.cpp index 56d3a257e..3a57f8e4e 100644 --- a/src/libavoid/makepath.cpp +++ b/src/libavoid/makepath.cpp @@ -273,7 +273,7 @@ static void dijkstraPath(ConnRef *lineRef, VertInf *src, VertInf *tar) { Router *router = src->_router; - double unseen = (double) INT_MAX; + double unseen = (double) __INT_MAX__; // initialize arrays VertInf *finish = router->vertices.end(); diff --git a/src/libnr/nr-maybe.h b/src/libnr/nr-maybe.h index 94078c211..6071a60ad 100644 --- a/src/libnr/nr-maybe.h +++ b/src/libnr/nr-maybe.h @@ -15,6 +15,7 @@ #include #include +#include namespace NR { diff --git a/src/livarot/float-line.cpp b/src/livarot/float-line.cpp index 959143138..b790f2bb5 100644 --- a/src/livarot/float-line.cpp +++ b/src/livarot/float-line.cpp @@ -12,6 +12,7 @@ #ifdef faster_flatten # include // std::abs(float) #endif +#include #include "livarot/float-line.h" #include "livarot/int-line.h" #include diff --git a/src/live_effects/lpeobject-reference.cpp b/src/live_effects/lpeobject-reference.cpp index 2a38836cd..34005e791 100644 --- a/src/live_effects/lpeobject-reference.cpp +++ b/src/live_effects/lpeobject-reference.cpp @@ -6,6 +6,8 @@ * Released under GNU GPL, read the file 'COPYING' for more information. */ +#include + #include "enums.h" #include "live_effects/lpeobject-reference.h" #include "live_effects/lpeobject.h" diff --git a/src/syseq.h b/src/syseq.h index b16693356..2902a8858 100644 --- a/src/syseq.h +++ b/src/syseq.h @@ -12,6 +12,7 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#include #include #include #include diff --git a/src/ui/dialog/filter-effects-dialog.h b/src/ui/dialog/filter-effects-dialog.h index 3d105dfd0..c2fc7ff42 100644 --- a/src/ui/dialog/filter-effects-dialog.h +++ b/src/ui/dialog/filter-effects-dialog.h @@ -12,6 +12,8 @@ #ifndef INKSCAPE_UI_DIALOG_FILTER_EFFECTS_H #define INKSCAPE_UI_DIALOG_FILTER_EFFECTS_H +#include + #include #include #include diff --git a/src/widgets/ruler.h b/src/widgets/ruler.h index e2ea7c7fe..9e685771b 100644 --- a/src/widgets/ruler.h +++ b/src/widgets/ruler.h @@ -15,7 +15,7 @@ #include #include "sp-metric.h" - +#include #include diff --git a/src/xml/composite-node-observer.h b/src/xml/composite-node-observer.h index 7b5a24d53..b9159dc40 100644 --- a/src/xml/composite-node-observer.h +++ b/src/xml/composite-node-observer.h @@ -15,6 +15,7 @@ #ifndef SEEN_INKSCAPE_XML_COMPOSITE_NODE_OBSERVER_H #define SEEN_INKSCAPE_XML_COMPOSITE_NODE_OBSERVER_H +#include #include "gc-managed.h" #include "xml/node-observer.h" #include "util/list-container.h"