aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--tests/Makefile.am6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 92951cf788..46970b1676 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-02-20 Matt Loper <matt@helixcode.com>
+
+ * tests/Makefile.am: Changed dependencies on libibex.la to
+ libibex.a. In test9_LDADD, placed libcamelmbox.la before
+ libibex.la, as the former requires the latter.
+
2000-02-20 Damon Chaplin <damon@helixcode.com>
* widgets/shortcut-bar/Makefile.am: added libetext.a and libeutil.a
diff --git a/tests/Makefile.am b/tests/Makefile.am
index ec7edb8409..82f2549709 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -5,7 +5,7 @@ INCLUDES = -I$(top_srcdir)/intl -I$(top_srcdir) -I$(top_srcdir)/camel \
-I$(top_srcdir)/camel/providers/mbox
LDADD = \
$(top_builddir)/camel/libcamel.la \
- $(top_builddir)/libibex/libibex.la \
+ $(top_builddir)/libibex/libibex.a \
$(GNOME_LIBDIR) \
$(GNOMEUI_LIBS) $(INTLLIBS) $(EXTRA_GNOME_LIBS)
# $(BONOBO_LIBS)
@@ -22,12 +22,12 @@ LDADD = \
#test11_LDADD = \
# $(LDADD) \
# $(top_builddir)/filter/libfilter.la \
-# $(top_builddir)/libibex/libibex.la
+# $(top_builddir)/libibex/libibex.a
test9_LDADD = \
$(top_builddir)/camel/libcamel.la \
- $(top_builddir)/libibex/libibex.la \
$(top_builddir)/camel/providers/mbox/libcamelmbox.la \
+ $(top_builddir)/libibex/libibex.a \
$(GNOME_LIBDIR) \
$(GNOMEUI_LIBS) $(INTLLIBS) $(EXTRA_GNOME_LIBS)