[Evolution-hackers] evolution master does not build

2010-03-15 Thread Thomas Mittelstaedt
Hallo,

In latest git master, I had to update the Makefile.am in
evolution/capplet/settings to make it build:

latest changeset:
commit 04305b8fa35d87d97e48b11f93d24604cef5155d
Author: Matthew Barnes 
Date:   Mon Mar 15 12:11:26 2010 -0400


diff --git a/capplet/settings/Makefile.am b/capplet/settings/Makefile.am
index c3df948..b7d7a34 100644
--- a/capplet/settings/Makefile.am
+++ b/capplet/settings/Makefile.am
@@ -11,6 +11,7 @@ AM_CPPFLAGS = \
-I$(top_srcdir)/shell   \
-I$(top_srcdir)/smime/lib   \
-I$(top_srcdir)/smime/gui   \
+   -I$(top_srcdir)/e-util  \
$(GNOME_PLATFORM_CFLAGS)\
$(EVOLUTION_MAIL_CFLAGS)\
$(CERT_UI_CFLAGS)   \
@@ -29,7 +30,7 @@ AM_CPPFLAGS = \
-DG_LOG_DOMAIN=\"evolution-mail\"   \
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" 
-   
+
 AM_CFLAGS =\
 -Wall\
 -g -O0 
@@ -64,6 +65,8 @@ libevolution_mail_settings_la_LIBADD =
\
$(GNOME_PLATFORM_LIBS)  \
$(top_builddir)/widgets/misc/libemiscwidgets.la \
$(top_builddir)/filter/libfilter.la \
-   $(top_builddir)/mail/libevolution-mail.la   
+   $(top_builddir)/mail/libevolution-mail.la \
+   $(top_builddir)/e-util/libeutil.la  \
+   $(top_builddir)/shell/libeshell.la  
 


___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] evolution master does not build

2010-03-15 Thread Matthew Barnes
On Mon, 2010-03-15 at 20:06 +0100, Thomas Mittelstaedt wrote:
> In latest git master, I had to update the Makefile.am in
> evolution/capplet/settings to make it build:

Thanks, changes committed.

Matthew Barnes

___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] evolution master does not build

2010-03-15 Thread Paul Smith
On Mon, 2010-03-15 at 15:49 -0400, Matthew Barnes wrote:
> On Mon, 2010-03-15 at 20:06 +0100, Thomas Mittelstaedt wrote:
> > In latest git master, I had to update the Makefile.am in
> > evolution/capplet/settings to make it build:
> 
> Thanks, changes committed.

Hi Matt; where were they committed?  I pulled the latest git HEAD and I
don't see these changes... see my previous email (sorry I posted without
reading this but my Evo has been offline so I could rebuild it :-p :-))

Maybe they went onto a branch or something?  I'm no git expert so I'm
not sure how to check this.  Does everyone else see this change?

___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] evolution master does not build

2010-03-15 Thread Matthew Barnes
On Mon, 2010-03-15 at 18:25 -0400, Paul Smith wrote:
> Hi Matt; where were they committed?  I pulled the latest git HEAD and I
> don't see these changes... see my previous email (sorry I posted without
> reading this but my Evo has been offline so I could rebuild it :-p :-))
> 
> Maybe they went onto a branch or something?  I'm no git expert so I'm
> not sure how to check this.  Does everyone else see this change?

Bah, I fixed the wrong Makefile.am.  Try it again.

http://git.gnome.org/browse/evolution/commit/?id=ab9d256343093b6dc7002c4242230c241dc3a353

Matt


___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] evolution master does not build

2010-03-16 Thread Paul Smith
On Mon, 2010-03-15 at 19:17 -0400, Matthew Barnes wrote:
> On Mon, 2010-03-15 at 18:25 -0400, Paul Smith wrote:
> > Hi Matt; where were they committed?  I pulled the latest git HEAD and I
> > don't see these changes... see my previous email (sorry I posted without
> > reading this but my Evo has been offline so I could rebuild it :-p :-))
> > 
> > Maybe they went onto a branch or something?  I'm no git expert so I'm
> > not sure how to check this.  Does everyone else see this change?
> 
> Bah, I fixed the wrong Makefile.am.  Try it again.
> 
> http://git.gnome.org/browse/evolution/commit/?id=ab9d256343093b6dc7002c4242230c241dc3a353

Better, but still fails later on in evolution/capplet directory itself.

Adding this patch allows all to work:

diff --git a/capplet/Makefile.am b/capplet/Makefile.am
index 51e17dc..196f62a 100644
--- a/capplet/Makefile.am
+++ b/capplet/Makefile.am
@@ -59,5 +59,6 @@ evolution_settings_LDADD =\
$(top_builddir)/widgets/misc/libemiscwidgets.la \
$(top_builddir)/filter/libfilter.la \
$(top_builddir)/mail/libevolution-mail.la   \
-   $(top_builddir)/capplet/settings/libevolution-mail-settings.la
-
+   $(top_builddir)/capplet/settings/libevolution-mail-settings.la  \
+   $(top_builddir)/shell/libeshell.la  \
+   $(top_builddir)/e-util/libeutil.la


___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] evolution master does not build

2010-03-16 Thread Matthew Barnes
On Tue, 2010-03-16 at 09:30 -0400, Paul Smith wrote:
> Adding this patch allows all to work:
> 
> diff --git a/capplet/Makefile.am b/capplet/Makefile.am
> index 51e17dc..196f62a 100644
> --- a/capplet/Makefile.am
> +++ b/capplet/Makefile.am
> @@ -59,5 +59,6 @@ evolution_settings_LDADD =  \
>   $(top_builddir)/widgets/misc/libemiscwidgets.la \
>   $(top_builddir)/filter/libfilter.la \
>   $(top_builddir)/mail/libevolution-mail.la   \
> - $(top_builddir)/capplet/settings/libevolution-mail-settings.la
> -
> + $(top_builddir)/capplet/settings/libevolution-mail-settings.la  \
> + $(top_builddir)/shell/libeshell.la  \
> + $(top_builddir)/e-util/libeutil.la

Okay thanks.  Committed.

Matthew Barnes

___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] evolution master does not build in evolution/modules/network-manager

2010-03-21 Thread Thomas Mittelstaedt
Got the error:

.libs/libevolution_module_network_manager_la-evolution-network-manager.o: In 
function `e_network_manager_register_type':
/home/tom/src/evolution/git/obj/evolution/modules/network-manager/../../../../evolution/modules/network-manager/evolution-network-manager.c:54:
 undefined reference to `e_extension_get_type'

The following is needed, i think:

diff --git a/modules/network-manager/Makefile.am
b/modules/network-manager/Makefile.am
index 24cd80a..f7a01a6 100644
--- a/modules/network-manager/Makefile.am
+++ b/modules/network-manager/Makefile.am
@@ -13,6 +13,7 @@ libevolution_module_network_manager_la_SOURCES =
\
 
 libevolution_module_network_manager_la_LIBADD =
\
$(top_builddir)/shell/libeshell.la  \
+   $(top_builddir)/e-util/libeutil.la  \
$(GNOME_PLATFORM_LIBS)  \
$(DBUS_GLIB_LIBS)


___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers