sync

Backup service to store encrypted wallet databases (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit 7be03cd089eae7eb4cef3a5fda01947379e0fafd
parent 9f17c97dac2b745ae26588ea524f287e76771433
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat,  1 May 2021 19:43:23 +0200

add missing XLIB linkage for coverage

Diffstat:
Msrc/syncdb/Makefile.am | 12++++++++----
Msrc/testing/Makefile.am | 3++-
2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/syncdb/Makefile.am b/src/syncdb/Makefile.am @@ -25,7 +25,8 @@ sync_dbinit_LDADD = \ $(top_builddir)/src/util/libsyncutil.la \ libsyncdb.la \ -ltalerutil \ - -lgnunetutil + -lgnunetutil \ + $(XLIB) lib_LTLIBRARIES = \ libsyncdb.la @@ -35,7 +36,8 @@ libsyncdb_la_LIBADD = \ $(top_builddir)/src/util/libsyncutil.la \ -lgnunetpq \ -lpq \ - -lgnunetutil + -lgnunetutil \ + $(XLIB) libsyncdb_la_LDFLAGS = \ $(POSTGRESQL_LDFLAGS) \ -version-info 0:0:0 \ @@ -50,7 +52,8 @@ libsync_plugin_db_postgres_la_LDFLAGS = \ -lgnunetpq \ -lpq \ -ltalerpq \ - -lgnunetutil $(XLIB) + -lgnunetutil \ + $(XLIB) check_PROGRAMS = \ $(TESTS) @@ -62,7 +65,8 @@ test_sync_db_postgres_LDFLAGS = \ libsyncdb.la \ -lgnunetutil \ -lgnunetpq \ - -ltalerutil + -ltalerutil \ + $(XLIB) TESTS = \ test_sync_db-postgres diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am @@ -58,4 +58,5 @@ test_sync_api_LDADD = \ -lgnunetjson \ -lgnunetcurl \ -lgnunetutil \ - -ljansson + -ljansson \ + $(XLIB)