Yet another Gnome 2.0 build report



Hi all,

Ravi wrote a nice summary already which you can find here:

http://mail.gnome.org/archives/gnome-2-0-list/2001-June/msg00316.html

So I will just add a few points:

1) Maybe some of you noticed that I had very strange problems with
autoconf which others hadn't. For me the solution was to update to the
autoconf CVS version. I suppose that this is a problem with my
distribution (SuSE), 'cos I found some similar error reports on the net,
always with SuSE. But this is just a guess.

2) I need to apply the attached patches to libgnomecanvas and libgnomeui
in order to get these build. Maybe someone can look into this, it's mostly
removing not needed header files and substitution of deprecated macros. If
these patches are correct I can apply them.

Well, thats it. The rest works like Ravi explained it. Thanks to all who
helped me with my build problems.

Regards,

    Jens
? diff.output
Index: libgnomeui/libgnomeui.h
===================================================================
RCS file: /cvs/gnome/libgnomeui/libgnomeui/libgnomeui.h,v
retrieving revision 1.148
diff -u -r1.148 libgnomeui.h
--- libgnomeui/libgnomeui.h	2001/06/14 17:04:16	1.148
+++ libgnomeui/libgnomeui.h	2001/06/21 16:02:54
@@ -30,7 +30,6 @@
 
 #include <libgnomeui/gnome-uidefs.h>
 #include <libgnomeui/gnome-about.h>
-#include <libgnomeui/gnome-animator.h>
 #include <libgnomecanvas/gnome-canvas.h>
 #include <libgnomecanvas/gnome-canvas-pixbuf.h>
 #include <libgnomecanvas/gnome-canvas-line.h>
? diff.output
? libgnomecanvas/_sed
Index: libgnomecanvas/gnome-canvas-bpath.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-bpath.h,v
retrieving revision 1.4
diff -u -r1.4 gnome-canvas-bpath.h
--- libgnomecanvas/gnome-canvas-bpath.h	2001/06/20 07:23:22	1.4
+++ libgnomecanvas/gnome-canvas-bpath.h	2001/06/21 16:01:45
@@ -14,12 +14,11 @@
 #ifndef GNOME_CANVAS_BPATH_H
 #define GNOME_CANVAS_BPATH_H
 
-#include <libgnome/gnome-defs.h>
-#include <libgnomeui/gnome-canvas.h>
+#include "gnome-canvas.h"
 #include "gnome-canvas-shape.h"
 #include "gnome-canvas-path-def.h"
 
-BEGIN_GNOME_DECLS
+G_BEGIN_DECLS
 
 
 /* Bpath item for the canvas.
@@ -57,6 +56,6 @@
 /* Standard Gtk function */
 GtkType gnome_canvas_bpath_get_type (void);
 
-END_GNOME_DECLS
+G_END_DECLS
 
 #endif
Index: libgnomecanvas/gnome-canvas-clipgroup.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-clipgroup.h,v
retrieving revision 1.3
diff -u -r1.3 gnome-canvas-clipgroup.h
--- libgnomecanvas/gnome-canvas-clipgroup.h	2001/06/17 23:02:10	1.3
+++ libgnomecanvas/gnome-canvas-clipgroup.h	2001/06/21 16:01:45
@@ -14,16 +14,15 @@
  *          Lauris Kaplinski <lauris ximian com>
  */
 
-#include <libgnome/gnome-defs.h>
-#include <libgnomeui/gnome-canvas.h>
-#include <libgnomeui/gnome-canvas-util.h>
+#include "gnome-canvas.h"
+#include "gnome-canvas-util.h"
 
 #include <libart_lgpl/art_bpath.h>
 #include <libart_lgpl/art_svp_wind.h>
 #include <libart_lgpl/art_vpath_dash.h>
 #include "gnome-canvas-path-def.h"
 
-BEGIN_GNOME_DECLS
+G_BEGIN_DECLS
 
 
 #define GNOME_TYPE_CANVAS_CLIPGROUP            (gnome_canvas_clipgroup_get_type ())
@@ -54,6 +53,6 @@
 GtkType gnome_canvas_clipgroup_get_type (void);
 
 
-END_GNOME_DECLS
+G_END_DECLS
 
 #endif
Index: libgnomecanvas/gnome-canvas-path-def.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-path-def.h,v
retrieving revision 1.2
diff -u -r1.2 gnome-canvas-path-def.h
--- libgnomecanvas/gnome-canvas-path-def.h	2001/06/17 23:02:10	1.2
+++ libgnomecanvas/gnome-canvas-path-def.h	2001/06/21 16:01:45
@@ -17,9 +17,8 @@
 
 #include <glib.h>
 #include <libart_lgpl/art_bpath.h>
-#include <libgnome/gnome-defs.h>
 
-BEGIN_GNOME_DECLS
+G_BEGIN_DECLS
 
 typedef struct _GnomeCanvasPathDef GnomeCanvasPathDef;
 
@@ -89,6 +88,6 @@
 gboolean gnome_canvas_path_def_any_closed (const GnomeCanvasPathDef * path);
 gboolean gnome_canvas_path_def_all_closed (const GnomeCanvasPathDef * path);
 
-END_GNOME_DECLS
+G_END_DECLS
 
 #endif
Index: libgnomecanvas/gnome-canvas-pixbuf.c
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-pixbuf.c,v
retrieving revision 1.17
diff -u -r1.17 gnome-canvas-pixbuf.c
--- libgnomecanvas/gnome-canvas-pixbuf.c	2001/06/12 03:19:57	1.17
+++ libgnomecanvas/gnome-canvas-pixbuf.c	2001/06/21 16:01:47
@@ -29,9 +29,6 @@
 #include <libart_lgpl/art_rgb_rgba_affine.h>
 #include "gnome-canvas-pixbuf.h"
 
-/* For GtkTypeAnchor */
-#include <gtk/gtkpacker.h>
-
 
 
 /* Private part of the GnomeCanvasPixbuf structure */
Index: libgnomecanvas/gnome-canvas-shape-private.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-shape-private.h,v
retrieving revision 1.1
diff -u -r1.1 gnome-canvas-shape-private.h
--- libgnomecanvas/gnome-canvas-shape-private.h	2001/06/20 07:23:22	1.1
+++ libgnomecanvas/gnome-canvas-shape-private.h	2001/06/21 16:01:47
@@ -18,11 +18,11 @@
 #include <libart_lgpl/art_svp.h>
 #include <libart_lgpl/art_vpath_dash.h>
 #include <libart_lgpl/art_svp_wind.h>
-#include <libgnomeui/gnome-canvas.h>
+#include "gnome-canvas.h"
 
 #include "gnome-canvas-path-def.h"
 
-BEGIN_GNOME_DECLS
+G_BEGIN_DECLS
 
 typedef struct _GnomeCanvasShapePrivGdk GnomeCanvasShapePrivGdk;
 typedef struct _GCBPDrawCtx GCBPDrawCtx;
@@ -97,6 +97,6 @@
 	GnomeCanvasShapePrivGdk * gdk;	/* Gdk specific things */
 };
 
-END_GNOME_DECLS
+G_END_DECLS
 
 #endif
Index: libgnomecanvas/gnome-canvas-shape.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-shape.h,v
retrieving revision 1.1
diff -u -r1.1 gnome-canvas-shape.h
--- libgnomecanvas/gnome-canvas-shape.h	2001/06/20 07:23:22	1.1
+++ libgnomecanvas/gnome-canvas-shape.h	2001/06/21 16:01:47
@@ -14,11 +14,10 @@
 #ifndef GNOME_CANVAS_SHAPE_H
 #define GNOME_CANVAS_SHAPE_H
 
-#include <libgnome/gnome-defs.h>
-#include <libgnomeui/gnome-canvas.h>
+#include "gnome-canvas.h"
 #include "gnome-canvas-path-def.h"
 
-BEGIN_GNOME_DECLS
+G_BEGIN_DECLS
 
 
 /* Shape item for the canvas.
@@ -75,6 +74,6 @@
 /* Standard Gtk function */
 GtkType gnome_canvas_shape_get_type (void);
 
-END_GNOME_DECLS
+G_END_DECLS
 
 #endif
Index: libgnomecanvas/gnome-canvas-text.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-text.h,v
retrieving revision 1.20
diff -u -r1.20 gnome-canvas-text.h
--- libgnomecanvas/gnome-canvas-text.h	2001/05/05 23:15:37	1.20
+++ libgnomecanvas/gnome-canvas-text.h	2001/06/21 16:01:47
@@ -37,7 +37,6 @@
 #define GNOME_CANVAS_TEXT_H
 
 
-#include <gtk/gtkpacker.h> /* why the hell is GtkAnchorType here and not in gtkenums.h? */
 #include "gnome-canvas.h"
 
 
Index: libgnomecanvas/gnome-canvas-widget.h
===================================================================
RCS file: /cvs/gnome/libgnomecanvas/libgnomecanvas/gnome-canvas-widget.h,v
retrieving revision 1.9
diff -u -r1.9 gnome-canvas-widget.h
--- libgnomecanvas/gnome-canvas-widget.h	2001/04/18 23:54:53	1.9
+++ libgnomecanvas/gnome-canvas-widget.h	2001/06/21 16:01:47
@@ -35,7 +35,6 @@
 #define GNOME_CANVAS_WIDGET_H
 
 
-#include <gtk/gtkpacker.h> /* why the hell is GtkAnchorType here and not in gtkenums.h? */
 #include "gnome-canvas.h"
 
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]