diff options
Diffstat (limited to 'wombat')
-rw-r--r-- | wombat/ChangeLog | 4 | ||||
-rw-r--r-- | wombat/Makefile.am | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog index fda6fc5e00..f146e26b2f 100644 --- a/wombat/ChangeLog +++ b/wombat/ChangeLog @@ -1,3 +1,7 @@ +2001-05-31 Christopher James Lahey <clahey@ximian.com> + + * Makefile.am (wombat_LDADD): Added db3 libs. + 2001-04-03 Dietmar Maurer <dietmar@ximian.com> * wombat-moniker.c (wombat_lookup_db): fix ref. counting problem diff --git a/wombat/Makefile.am b/wombat/Makefile.am index 0d0919613b..be6fb7fce8 100644 --- a/wombat/Makefile.am +++ b/wombat/Makefile.am @@ -22,8 +22,6 @@ wombat_SOURCES = \ wombat.c wombat_LDADD = \ - $(EXTRA_GNOME_LIBS) \ - $(BONOBO_VFS_GNOME_LIBS) \ $(top_builddir)/addressbook/backend/pas/libpas.a \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ $(top_builddir)/e-util/ename/libename.la \ @@ -32,7 +30,10 @@ wombat_LDADD = \ $(top_builddir)/libical/src/libical/libical.la \ $(top_builddir)/libversit/libversit.la \ $(top_builddir)/e-util/libeutil.la \ - $(LDAP_LIBS) + $(LDAP_LIBS) \ + $(DB3_LDADD) \ + $(EXTRA_GNOME_LIBS) \ + $(BONOBO_VFS_GNOME_LIBS) oafdir = $(datadir)/oaf @@ -54,4 +55,3 @@ wombat.pure: wombat $(PLINK) $(wombat_LDFLAGS) $(wombat_OBJECTS) $(wombat_LDADD) $(LIBS) endif - |