diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-04 21:36:16 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-04 21:36:16 +0800 |
commit | 8dc13ce6276cbdc11ae25747b61cb4207a2a8e98 (patch) | |
tree | 4e7c1e858022da4130abc40be1efd115764d852e | |
parent | f9b9c12b3bb8671cdebfa1d6de3a1f3d50bae024 (diff) | |
download | gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar.gz gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar.bz2 gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar.lz gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar.xz gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.tar.zst gsoc2013-evolution-8dc13ce6276cbdc11ae25747b61cb4207a2a8e98.zip |
Put DB3_LDADD and LDAP_LIBS on the top so the PAS backend uses the right
* Makefile.am (wombat_LDADD): Put DB3_LDADD and LDAP_LIBS on the
top so the PAS backend uses the right version of DB3 and always
links to LDAP.
svn path=/trunk/; revision=16343
-rw-r--r-- | wombat/ChangeLog | 6 | ||||
-rw-r--r-- | wombat/Makefile.am | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog index 6ff500c3d7..6a50f43730 100644 --- a/wombat/ChangeLog +++ b/wombat/ChangeLog @@ -1,3 +1,9 @@ +2002-04-04 Ettore Perazzoli <ettore@ximian.com> + + * Makefile.am (wombat_LDADD): Put DB3_LDADD and LDAP_LIBS on the + top so the PAS backend uses the right version of DB3 and always + links to LDAP. + 2002-03-19 Dan Winship <danw@ximian.com> * Makefile.am (wombat_LDADD): s/libversit.la/libversit.a/ diff --git a/wombat/Makefile.am b/wombat/Makefile.am index d7f57d9e91..9d7443da6c 100644 --- a/wombat/Makefile.am +++ b/wombat/Makefile.am @@ -25,6 +25,8 @@ wombat_SOURCES = \ wombat_LDADD = \ $(top_builddir)/addressbook/backend/pas/libpas.a \ + $(DB3_LDADD) \ + $(LDAP_LIBS) \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ $(top_builddir)/camel/libcamel.la \ $(top_builddir)/libibex/libibex.la \ @@ -35,9 +37,7 @@ wombat_LDADD = \ $(top_builddir)/libversit/libversit.a \ $(top_builddir)/e-util/libedb3util.la \ $(top_builddir)/e-util/libeutil.la \ - $(top_builddir)/libwombat/libwombat.la \ - $(WOMBAT_LIBS) \ - $(DB3_LDADD) + $(top_builddir)/libwombat/libwombat.la oafdir = $(datadir)/oaf |