diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:38:28 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:38:28 +0800 |
commit | 9487af166385eb7b91cc53cbcb31c3bbddcfdf08 (patch) | |
tree | 1a7a34089c7c651041e9b61a98137c7f2a058ced | |
parent | cd0f8af3d822249b57a884bcd261e1bbc2786513 (diff) | |
download | gsoc2013-evolution-9487af166385eb7b91cc53cbcb31c3bbddcfdf08.tar.gz gsoc2013-evolution-9487af166385eb7b91cc53cbcb31c3bbddcfdf08.tar.zst gsoc2013-evolution-9487af166385eb7b91cc53cbcb31c3bbddcfdf08.zip |
** Fix for bug #448223 from Gilles Dartiguelongue
svn path=/trunk/; revision=33704
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/conduit/Makefile.am | 7 |
2 files changed, 8 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 9d9d0bd9d7..4a9891d8d4 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2007-06-18 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bug #445793 from Gilles Dartiguelongue + + * conduit/Makefile.am: + +2007-06-18 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bug #448223 from Gilles Dartiguelongue * gui/widgets/e-addressbook-view.c: (generate_viewoption_menu): diff --git a/addressbook/conduit/Makefile.am b/addressbook/conduit/Makefile.am index 69cbeaf14d..adf09eb2f4 100644 --- a/addressbook/conduit/Makefile.am +++ b/addressbook/conduit/Makefile.am @@ -1,8 +1,4 @@ INCLUDES = \ - -I$(top_srcdir) \ - -I$(top_srcdir)/addressbook \ - -I$(top_srcdir)/addressbook/backend \ - -I$(top_builddir)/addressbook/backend \ -I$(top_srcdir)/e-util \ -I$(top_builddir)/e-util \ -I$(top_srcdir)/widgets/misc \ @@ -15,10 +11,11 @@ privconduit_LTLIBRARIES = libeaddress_conduit.la libeaddress_conduit_la_SOURCES = \ address-conduit.c -libeaddress_conduit_la_LDFLAGS = -module -avoid-version +libeaddress_conduit_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) libeaddress_conduit_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/e-util/libeconduit.la \ $(top_builddir)/widgets/misc/libemiscwidgets.la \ $(EVOLUTION_ADDRESSBOOK_CONDUIT_LIBS) |