Mailinglist Archive: opensuse-commit (1262 mails)
| < Previous | Next > |
commit evolution
- From: root@xxxxxxx (h_root)
- Date: Mon, 4 Sep 2006 21:23:38 +0200 (CEST)
- Message-id: <20060904192338.42C8795258@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package evolution
checked in at Mon Sep 4 21:23:38 CEST 2006.
--------
--- GNOME/evolution/evolution.changes 2006-09-04 19:59:28.000000000 +0200
+++ evolution/evolution.changes 2006-09-04 20:55:24.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Sep 4 20:54:41 CEST 2006 - aj@xxxxxxx
+
+- Fix build problems with undeclared functions, missing return
+ declaration and uninitialized variables.
+
+-------------------------------------------------------------------
New:
----
build-fixes.diff
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ evolution.spec ++++++
--- /var/tmp/diff_new_pack.Z9jHG5/_old 2006-09-04 21:22:57.000000000 +0200
+++ /var/tmp/diff_new_pack.Z9jHG5/_new 2006-09-04 21:22:57.000000000 +0200
@@ -21,7 +21,7 @@
Autoreqprov: on
Obsoletes: bonobo-conf
Version: 2.8.0
-Release: 1
+Release: 2
Summary: The Integrated GNOME Mail, Calendar, and Address Book Suite
Source: ftp://ftp.gnome.org/pub/gnome/sources/evolution/2.8/%{name}-%{version}.tar.gz
Source1: summerdance-about2.png
@@ -112,6 +112,7 @@
Patch95: evolution-datarootdir.patch
Patch96: bnc-190421-cal-appointment-end-timezone.patch
Patch97: bnc-190002-live-meeting.patch
+Patch999: build-fixes.diff
URL: http://gnome.org/projects/evolution/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: filesystem gconf2 shared-mime-info
@@ -409,11 +410,9 @@
#%patch93
#%patch94
#%patch95
+%patch999
%build
-#rename no nb po/no.*
-sed "s/\(ALL_LINGUAS.*\) no /\1 nb /" configure.in > configure.in.tmp && \
- mv configure.in.tmp configure.in
autoconf
aclocal
automake --add-missing
@@ -530,6 +529,9 @@
%{prefix}/share/gnome-pilot/conduits/*.conduit
%changelog -n evolution
+* Mon Sep 04 2006 - aj@xxxxxxx
+- Fix build problems with undeclared functions, missing return
+ declaration and uninitialized variables.
* Mon Sep 04 2006 - vvaradhan@xxxxxxxxxx
- Updating to 2.8.0 - Includes loads of bug fixes and features like:
* Global search in Mailer and Quick Search defaults
++++++ build-fixes.diff ++++++
--- addressbook/gui/widgets/e-minicard.c
+++ addressbook/gui/widgets/e-minicard.c
@@ -30,6 +30,7 @@
#include <libgnomecanvas/gnome-canvas-pixbuf.h>
#include <text/e-text.h>
#include <e-util/e-util.h>
+#include <e-util/e-html-utils.h>
#include <misc/e-canvas-utils.h>
#include <misc/e-canvas.h>
#include <libebook/e-book.h>
--- calendar/gui/cal-search-bar.c
+++ calendar/gui/cal-search-bar.c
@@ -31,6 +31,7 @@
#include <gtk/gtksignal.h>
#include <libgnome/gnome-i18n.h>
#include <e-util/e-icon-factory.h>
+#include <libedataserver/e-categories.h>
#include "cal-search-bar.h"
typedef struct CALSearchBarItem {
--- calendar/gui/calendar-component.c
+++ calendar/gui/calendar-component.c
@@ -1302,6 +1302,8 @@
calendar_setup_new_calendar (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (component_view->calendar))));
}
+extern GtkWidget * gnome_calendar_get_tag (GnomeCalendar *gcal);
+
static CalendarComponentView *
create_component_view (CalendarComponent *calendar_component)
{
--- calendar/gui/e-week-view-event-item.c
+++ calendar/gui/e-week-view-event-item.c
@@ -1097,6 +1097,9 @@
cairo_save (cr);
gdk_cairo_set_source_color (cr, &week_view->colors[E_WEEK_VIEW_COLOR_EVENT_BORDER]);
cairo_set_line_width (cr, 0.7);
+ /* XXX: rect_x2 needs to be initialized, this code is stolen and might
+ not work at all. */
+ rect_x2 = rect_x + rect_w - 1;
cairo_move_to (cr, rect_x2, y2);
cairo_line_to (cr, rect_x2, y2);
cairo_stroke (cr);
--- mail/mail-send-recv.c
+++ mail/mail-send-recv.c
@@ -325,6 +325,8 @@
if (h > 400)
h = 400;
gtk_widget_set_usize (window, w, h);
+
+ return TRUE;
}
static struct _send_data *
--- plugins/publish-calendar/url-editor-dialog.c
+++ plugins/publish-calendar/url-editor-dialog.c
@@ -285,7 +285,7 @@
gtk_entry_set_text (GTK_ENTRY (dialog->server_entry), euri->host);
if (euri->port)
- gtk_entry_set_text (GTK_ENTRY (dialog->port_entry), euri->port);
+ gtk_entry_set_text (GTK_ENTRY (dialog->port_entry), (void *)euri->port);
if (euri->path)
gtk_entry_set_text (GTK_ENTRY (dialog->file_entry), euri->path);
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |