From: Marcin Siodelski Date: Mon, 21 Jan 2019 01:22:56 +0000 (+0100) Subject: [#396,!205] Enable building mysql_cb hooks library. X-Git-Tag: 429-Updated-StampedValue-to-support-reals_base~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14e2d24b1e9c93a915ddefcf810b0ae467cbc983;p=thirdparty%2Fkea.git [#396,!205] Enable building mysql_cb hooks library. --- diff --git a/configure.ac b/configure.ac index 73e1577ba7..15724c481e 100644 --- a/configure.ac +++ b/configure.ac @@ -1554,6 +1554,8 @@ AC_CONFIG_FILES([Makefile src/hooks/dhcp/high_availability/tests/Makefile src/hooks/dhcp/lease_cmds/Makefile src/hooks/dhcp/lease_cmds/tests/Makefile + src/hooks/dhcp/mysql_cb/Makefile + src/hooks/dhcp/mysql_cb/tests/Makefile src/hooks/dhcp/user_chk/Makefile src/hooks/dhcp/user_chk/tests/Makefile src/hooks/dhcp/user_chk/tests/test_data_files_config.h diff --git a/src/hooks/dhcp/Makefile.am b/src/hooks/dhcp/Makefile.am index d8e33e26c8..0bb9b878e3 100644 --- a/src/hooks/dhcp/Makefile.am +++ b/src/hooks/dhcp/Makefile.am @@ -1 +1,7 @@ -SUBDIRS = high_availability lease_cmds stat_cmds user_chk +SUBDIRS = high_availability lease_cmds + +if HAVE_MYSQL +SUBDIRS += mysql_cb +endif + +SUBDIRS += stat_cmds user_chk