diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
commit | 799d7f54fdd6bcbf6b73d95070e17b7455c94830 (patch) | |
tree | 280f5659313d908d2f1a5f9b93a0d0fa635008fd /widgets/e-table | |
parent | dff7aec3c3302c2191100ce22a8cf28959808c28 (diff) | |
download | gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.gz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.bz2 gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.lz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.xz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.zst gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.zip |
Various building fixes. At least, now it builds for me.
svn path=/trunk/; revision=2007
Diffstat (limited to 'widgets/e-table')
-rw-r--r-- | widgets/e-table/ChangeLog | 4 | ||||
-rw-r--r-- | widgets/e-table/Makefile.am | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog index 5f3d997ab7..a536a37fe5 100644 --- a/widgets/e-table/ChangeLog +++ b/widgets/e-table/ChangeLog @@ -1,3 +1,7 @@ +2000-03-01 Ettore Perazzoli <ettore@helixcode.com> + + * Makefile.am: Use `libeutil.la', not `libeutil.a'. + 2000-02-29 Christopher James Lahey <clahey@helixcode.com> * test-table.c: Test frozen columns diff --git a/widgets/e-table/Makefile.am b/widgets/e-table/Makefile.am index 4364c1fbc0..d32b74d406 100644 --- a/widgets/e-table/Makefile.am +++ b/widgets/e-table/Makefile.am @@ -69,7 +69,7 @@ table_example_1_SOURCES = \ table_example_1_LDADD = \ libetable.a \ $(EXTRA_GNOME_LIBS) \ - $(top_builddir)/e-util/libeutil.a \ + $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/widgets/e-text/libetext.a table_example_1_LDFLAGS = `gnome-config --libs gdk_pixbuf` @@ -80,7 +80,7 @@ table_example_2_SOURCES = \ table_example_2_LDADD = \ libetable.a \ $(EXTRA_GNOME_LIBS) \ - $(top_builddir)/e-util/libeutil.a \ + $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/widgets/e-text/libetext.a table_example_2_LDFLAGS = `gnome-config --libs gdk_pixbuf` |