diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-30 14:53:31 -0500 | 
|---|---|---|
| committer | Christian Hopps <chopps@labn.net> | 2024-01-30 15:41:26 -0500 | 
| commit | ecc88c52ba15d9a1cbd625d5c54f0748393bdbe5 (patch) | |
| tree | da8565a072c6207527c03eb44141d1a2866926ed /configure.ac | |
| parent | 1e884ba12f2debb0a9003a0b65a811f5ce713c80 (diff) | |
build: build: make mgmtd test client build conditional
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index dbfae537b1..d9fd920c7c 100644 --- a/configure.ac +++ b/configure.ac @@ -701,6 +701,8 @@ AC_ARG_ENABLE([mgmtd],    AS_HELP_STRING([--disable-mgmtd], [do not build mgmtd]))  AC_ARG_ENABLE([mgmtd_local_validations],    AS_HELP_STRING([--enable-mgmtd-local-validations], [dev: unimplemented local validation])) +AC_ARG_ENABLE([mgmtd_test_be_client], +  AS_HELP_STRING([--enable-mgmtd-test-be-client], [build test backend client]))  AC_ARG_ENABLE([ripd],    AS_HELP_STRING([--disable-ripd], [do not build ripd]))  AC_ARG_ENABLE([ripngd], @@ -1811,6 +1813,10 @@ AS_IF([test "$enable_mgmtd" != "no"], [    ])  ]) +AS_IF([test "$enable_mgmtd_test_be_client" = "yes"], [ +  AC_DEFINE([HAVE_MGMTD_TESTC], [1], [mgmtd_testc]) +]) +  AS_IF([test "$enable_ripd" != "no"], [    AC_DEFINE([HAVE_RIPD], [1], [ripd])  ]) @@ -2772,6 +2778,7 @@ AM_CONDITIONAL([VTYSH], [test "$VTYSH" = "vtysh"])  AM_CONDITIONAL([ZEBRA], [test "$enable_zebra" != "no"])  AM_CONDITIONAL([BGPD], [test "$enable_bgpd" != "no"])  AM_CONDITIONAL([MGMTD], [test "$enable_mgmtd" != "no"]) +AM_CONDITIONAL([MGMTD_TESTC], [test "$enable_mgmtd_test_be_client" = "yes"])  AM_CONDITIONAL([RIPD], [test "$enable_ripd" != "no"])  AM_CONDITIONAL([OSPFD], [test "$enable_ospfd" != "no"])  AM_CONDITIONAL([LDPD], [test "$enable_ldpd" != "no"])  | 
