diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-08-28 20:09:02 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-28 20:09:02 +0800 |
commit | 520d90a9cc9fb24551a28116c81ab6b963cac5c9 (patch) | |
tree | 4b92463a31cc7822d1d798a8b263604cedc2d25c /plugins/backup-restore | |
parent | 890f9cb46f771cb3784766d2237e70cd14970418 (diff) | |
download | gsoc2013-evolution-520d90a9cc9fb24551a28116c81ab6b963cac5c9.tar.gz gsoc2013-evolution-520d90a9cc9fb24551a28116c81ab6b963cac5c9.tar.zst gsoc2013-evolution-520d90a9cc9fb24551a28116c81ab6b963cac5c9.zip |
Build with -Wl,--no-undefined and fix linker errors.
Diffstat (limited to 'plugins/backup-restore')
-rw-r--r-- | plugins/backup-restore/Makefile.am | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/plugins/backup-restore/Makefile.am b/plugins/backup-restore/Makefile.am index bc27b1d7a3..b848d3c51b 100644 --- a/plugins/backup-restore/Makefile.am +++ b/plugins/backup-restore/Makefile.am @@ -21,12 +21,15 @@ plugin_LTLIBRARIES = liborg-gnome-backup-restore.la liborg_gnome_backup_restore_la_SOURCES = backup-restore.c liborg_gnome_backup_restore_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) -liborg_gnome_backup_restore_la_LIBADD = \ - $(top_builddir)/e-util/libeutil.la +liborg_gnome_backup_restore_la_LIBADD = \ + $(SHELL_LIBS) \ + $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/shell/libeshell.la privlibexec_PROGRAMS = evolution-backup evolution_backup_SOURCES = backup.c -evolution_backup_LDADD = $(SHELL_LIBS) \ +evolution_backup_LDADD = \ + $(SHELL_LIBS) \ $(top_builddir)/e-util/libeutil.la if OS_WIN32 |