diff options
| author | Quentin Young <qlyoung@nvidia.com> | 2020-11-30 17:01:03 -0500 |
|---|---|---|
| committer | Quentin Young <qlyoung@nvidia.com> | 2020-12-01 18:37:14 -0500 |
| commit | fa22080d22e1e4e69f7bed6d041083df1b85b4b7 (patch) | |
| tree | bbc642ae55c397d273248c7e01ac2d1c043a60b6 /lib/libfrr.c | |
| parent | b4becb063f0ec06c4ecfe2ca832383d49d375441 (diff) | |
build: HAVE_LUA -> HAVE_SCRIPTING
And also guard all scripting-related stuff with HAVE_SCRIPTING.
Signed-off-by: Quentin Young <qlyoung@nvidia.com>
Diffstat (limited to 'lib/libfrr.c')
| -rw-r--r-- | lib/libfrr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libfrr.c b/lib/libfrr.c index 8e21ac11b2..05e6cf36e4 100644 --- a/lib/libfrr.c +++ b/lib/libfrr.c @@ -718,7 +718,9 @@ struct thread_master *frr_init(void) lib_cmd_init(); frr_pthread_init(); +#ifdef HAVE_SCRIPTING frrscript_init(); +#endif log_ref_init(); log_ref_vty_init(); |
