diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-09-27 16:53:25 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-10-07 15:09:52 +0200 |
commit | cc933ef9f6a6104f287415d97e22bf6e34f193d4 (patch) | |
tree | 552c08a261ad070972d989ca3de38efc1bc28a69 /lib/Makefile.am | |
parent | isisd: use qobj for vty->index context position (diff) | |
download | frr-cc933ef9f6a6104f287415d97e22bf6e34f193d4.tar.xz frr-cc933ef9f6a6104f287415d97e22bf6e34f193d4.zip |
lib, isisd: enable concurrent configuration editing
Finally, this disables the config editing lock for isisd. It also
enables deprecation warnings for the lib/ and isisd/ to catch accidental
uses of vty->index.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index b57e9eb4d..e95e6f34b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with automake to produce Makefile.in. -AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib +AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib \ + -DVTY_DEPRECATE_INDEX AM_CFLAGS = $(WERROR) DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" |