aboutsummaryrefslogtreecommitdiffstats
path: root/wombat
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-06-03 15:41:05 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-06-03 15:41:05 +0800
commitb8306eaf97e4f85b087e4c30a1f3793490d08a01 (patch)
tree733692e0e02b03ea28ad836cd897f45558695783 /wombat
parent907d3f8a5467ac3891e8734b436b5ab6046e0e6e (diff)
downloadgsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar.gz
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar.bz2
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar.lz
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar.xz
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.tar.zst
gsoc2013-evolution-b8306eaf97e4f85b087e4c30a1f3793490d08a01.zip
Fix linking order for `$(DB3_LDADD)'s so that we avoid pulling
functions from a different Berkeley DB library when we really don't mean to. svn path=/trunk/; revision=10105
Diffstat (limited to 'wombat')
-rw-r--r--wombat/ChangeLog4
-rw-r--r--wombat/Makefile.am2
2 files changed, 5 insertions, 1 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog
index f146e26b2f..40fe8cd40b 100644
--- a/wombat/ChangeLog
+++ b/wombat/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-03 Ettore Perazzoli <ettore@ximian.com>
+
+ * Makefile.am (wombat_LDADD): Move `$(DB3_LDADD)' before libeutil.
+
2001-05-31 Christopher James Lahey <clahey@ximian.com>
* Makefile.am (wombat_LDADD): Added db3 libs.
diff --git a/wombat/Makefile.am b/wombat/Makefile.am
index be6fb7fce8..1e409bf99a 100644
--- a/wombat/Makefile.am
+++ b/wombat/Makefile.am
@@ -23,6 +23,7 @@ wombat_SOURCES = \
wombat_LDADD = \
$(top_builddir)/addressbook/backend/pas/libpas.a \
+ $(DB3_LDADD) \
$(top_builddir)/addressbook/backend/ebook/libebook.la \
$(top_builddir)/e-util/ename/libename.la \
$(top_builddir)/calendar/pcs/libpcs.a \
@@ -31,7 +32,6 @@ wombat_LDADD = \
$(top_builddir)/libversit/libversit.la \
$(top_builddir)/e-util/libeutil.la \
$(LDAP_LIBS) \
- $(DB3_LDADD) \
$(EXTRA_GNOME_LIBS) \
$(BONOBO_VFS_GNOME_LIBS)