Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-22 11:55:09 +0300
committerViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-22 11:55:09 +0300
commit7bbe45f22e671f5449c113f4c378ba43b3d6a62b (patch)
tree1c1a05dfe3a398b66c9a53d960bdd348d21ddbee /tests/libs/zbxdbcache
parente4c97ce47870f4a3b263cfd6d82e5d407c4361d8 (diff)
.......... [DEV-840] fixed library linking issues
Diffstat (limited to 'tests/libs/zbxdbcache')
-rw-r--r--tests/libs/zbxdbcache/Makefile.am7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/libs/zbxdbcache/Makefile.am b/tests/libs/zbxdbcache/Makefile.am
index 871211184f2..5d6513db413 100644
--- a/tests/libs/zbxdbcache/Makefile.am
+++ b/tests/libs/zbxdbcache/Makefile.am
@@ -1,6 +1,10 @@
if SERVER
-noinst_PROGRAMS = zbx_vc_get_values zbx_vc_add_values zbx_vc_get_value
+SERVER_tests = zbx_vc_get_values zbx_vc_add_values zbx_vc_get_value
+endif
+
+noinst_PROGRAMS = $(SERVER_tests)
+if SERVER
VALUECACHE_LIBS = \
$(top_srcdir)/tests/libzbxmocktest.a \
$(top_srcdir)/tests/libzbxmockdata.a \
@@ -99,4 +103,3 @@ zbx_vc_get_value_CFLAGS = \
-I@top_srcdir@/src/libs/zbxhistory \
-I@top_srcdir@/tests
endif
-