summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-05-01 19:43:23 +0200
committerChristian Grothoff <christian@grothoff.org>2021-05-01 19:43:23 +0200
commit7be03cd089eae7eb4cef3a5fda01947379e0fafd (patch)
tree59f6c0b7d5006c66c150c2145d05c1e2df3a1d3f
parent9f17c97dac2b745ae26588ea524f287e76771433 (diff)
downloadsync-7be03cd089eae7eb4cef3a5fda01947379e0fafd.tar.gz
sync-7be03cd089eae7eb4cef3a5fda01947379e0fafd.tar.bz2
sync-7be03cd089eae7eb4cef3a5fda01947379e0fafd.zip
add missing XLIB linkage for coverage
-rw-r--r--src/syncdb/Makefile.am12
-rw-r--r--src/testing/Makefile.am3
2 files changed, 10 insertions, 5 deletions
diff --git a/src/syncdb/Makefile.am b/src/syncdb/Makefile.am
index 6007260..8e56d6c 100644
--- 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
index 06d01d8..328cc42 100644
--- a/src/testing/Makefile.am
+++ b/src/testing/Makefile.am
@@ -58,4 +58,5 @@ test_sync_api_LDADD = \
-lgnunetjson \
-lgnunetcurl \
-lgnunetutil \
- -ljansson
+ -ljansson \
+ $(XLIB)