summaryrefslogtreecommitdiffstats
path: root/src/bin/lfc
diff options
context:
space:
mode:
authorThomas Markwalder <tmark@isc.org>2021-03-19 19:54:41 +0100
committerThomas Markwalder <tmark@isc.org>2021-03-22 18:51:50 +0100
commit839e4f3e27d2091420949b964d814060c94cc0b6 (patch)
tree438ba6df8ce9a39d4e8ea93a564d0db69dcb4876 /src/bin/lfc
parent[#1730] Thread-safety issues per review comments (diff)
downloadkea-839e4f3e27d2091420949b964d814060c94cc0b6.tar.xz
kea-839e4f3e27d2091420949b964d814060c94cc0b6.zip
[#1730] Fixed Makefile issues
src/lib/http/tests/Makefile.am - added test_http_client.h to sources Added (or reordered) libkea-http: src/bin/d2/Makefile.am src/bin/d2/tests/Makefile.am src/bin/dhcp4/Makefile.am src/bin/dhcp4/tests/Makefile.am src/bin/dhcp6/Makefile.am src/bin/dhcp6/tests/Makefile.am src/bin/lfc/Makefile.am src/bin/lfc/tests/Makefile.am src/bin/netconf/Makefile.am src/bin/netconf/tests/Makefile.am src/hooks/dhcp/flex_option/Makefile.am src/hooks/dhcp/flex_option/libloadtests/Makefile.am src/hooks/dhcp/flex_option/tests/Makefile.am src/hooks/dhcp/high_availability/Makefile.am src/hooks/dhcp/high_availability/libloadtests/Makefile.am src/hooks/dhcp/high_availability/tests/Makefile.am src/hooks/dhcp/lease_cmds/Makefile.am src/hooks/dhcp/lease_cmds/tests/Makefile.am src/hooks/dhcp/mysql_cb/Makefile.am src/hooks/dhcp/mysql_cb/tests/Makefile.am src/hooks/dhcp/run_script/Makefile.am src/hooks/dhcp/run_script/libloadtests/Makefile.am src/hooks/dhcp/run_script/tests/Makefile.am src/hooks/dhcp/stat_cmds/Makefile.am src/hooks/dhcp/stat_cmds/tests/Makefile.am src/lib/config/tests/Makefile.am src/lib/dhcp_ddns/Makefile.am src/lib/dhcp_ddns/tests/Makefile.am src/lib/dhcpsrv/Makefile.am src/lib/dhcpsrv/benchmarks/Makefile.am src/lib/dhcpsrv/tests/Makefile.am src/lib/http/tests/Makefile.am src/lib/process/Makefile.am src/lib/process/tests/Makefile.am
Diffstat (limited to 'src/bin/lfc')
-rw-r--r--src/bin/lfc/Makefile.am1
-rw-r--r--src/bin/lfc/tests/Makefile.am1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/lfc/Makefile.am b/src/bin/lfc/Makefile.am
index 7b44626585..bf6e95f456 100644
--- a/src/bin/lfc/Makefile.am
+++ b/src/bin/lfc/Makefile.am
@@ -34,6 +34,7 @@ kea_lfc_LDADD += $(top_builddir)/src/lib/process/libkea-process.la
kea_lfc_LDADD += $(top_builddir)/src/lib/dhcp_ddns/libkea-dhcp_ddns.la
kea_lfc_LDADD += $(top_builddir)/src/lib/stats/libkea-stats.la
kea_lfc_LDADD += $(top_builddir)/src/lib/config/libkea-cfgclient.la
+kea_lfc_LDADD += $(top_builddir)/src/lib/http/libkea-http.la
kea_lfc_LDADD += $(top_builddir)/src/lib/dhcp/libkea-dhcp++.la
if HAVE_MYSQL
diff --git a/src/bin/lfc/tests/Makefile.am b/src/bin/lfc/tests/Makefile.am
index 02f8ed8e04..a2b9154af0 100644
--- a/src/bin/lfc/tests/Makefile.am
+++ b/src/bin/lfc/tests/Makefile.am
@@ -60,6 +60,7 @@ lfc_unittests_LDADD += $(top_builddir)/src/lib/dhcp_ddns/libkea-dhcp_ddns.la
lfc_unittests_LDADD += $(top_builddir)/src/lib/process/libkea-process.la
lfc_unittests_LDADD += $(top_builddir)/src/lib/stats/libkea-stats.la
lfc_unittests_LDADD += $(top_builddir)/src/lib/config/libkea-cfgclient.la
+lfc_unittests_LDADD += $(top_builddir)/src/lib/http/libkea-http.la
lfc_unittests_LDADD += $(top_builddir)/src/lib/dhcp/libkea-dhcp++.la
if HAVE_MYSQL