diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-11 02:04:20 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:06 +0100 |
commit | e3be04328f601963c825c722355f62c4b4e7cb31 (patch) | |
tree | 5ea05fcdf1d6c77bb4124650d9431fb47aa54af1 /zebra/Makefile.am | |
parent | pimd: Fix igmp(*,G) not influencing S,G mroutes (diff) | |
download | frr-e3be04328f601963c825c722355f62c4b4e7cb31.tar.xz frr-e3be04328f601963c825c722355f62c4b4e7cb31.zip |
lib, pimd, zebra: Allow pimd to ask the kernel about mroute info
When we need to lookup the mroute info for a route. Allow
pimd to ask the kernel.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/Makefile.am')
-rw-r--r-- | zebra/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/Makefile.am b/zebra/Makefile.am index 65927262f..428090d48 100644 --- a/zebra/Makefile.am +++ b/zebra/Makefile.am @@ -44,7 +44,7 @@ zebra_SOURCES = \ irdp_main.c irdp_interface.c irdp_packet.c router-id.c zebra_fpm.c \ $(othersrc) zebra_ptm.c zebra_rnh.c zebra_ptm_redistribute.c \ zebra_ns.c zebra_vrf.c zebra_static.c zebra_mpls.c zebra_mpls_vty.c \ - $(protobuf_srcs) \ + $(protobuf_srcs) zebra_mroute.c \ $(dev_srcs) testzebra_SOURCES = test_main.c zebra_rib.c interface.c connected.c debug.c \ @@ -60,7 +60,7 @@ noinst_HEADERS = \ rt_netlink.h zebra_fpm.h zebra_fpm_private.h zebra_rnh.h \ zebra_ptm_redistribute.h zebra_ptm.h zebra_routemap.h \ zebra_ns.h zebra_vrf.h ioctl_solaris.h zebra_static.h zebra_mpls.h \ - kernel_netlink.h if_netlink.h + kernel_netlink.h if_netlink.h zebra_mroute.h zebra_LDADD = $(otherobj) ../lib/libzebra.la $(LIBCAP) $(Q_FPM_PB_CLIENT_LDOPTS) |