net/quagga: fix multipath detection. (closes #8136)
authorAlexandros C. Couloumbis <alex@ozo.com>
Wed, 27 Oct 2010 10:34:32 +0000 (10:34 +0000)
committerAlexandros C. Couloumbis <alex@ozo.com>
Wed, 27 Oct 2010 10:34:32 +0000 (10:34 +0000)
SVN-Revision: 23654

net/quagga/patches/100-quagga_multipath_caching_policy.patch

index dae45e2087016900a6cfb64c2ba275dc354cd9e6..1d4a4ef8bca0db933eb3712dbd69d02c9aedb63a 100644 (file)
@@ -18,7 +18,7 @@
 +dnl ----------
 +AC_MSG_CHECKING(for support of multipath alg. in netlink)
 +  if grep RTA_MP_ALGO linux/rtnetlink.h >/dev/null 2>&1; then
-+    AC_DEFINE(HAVE_RT_MP_ALGO,,RTA_MP exist in rtnetlink)
++    AC_DEFINE(HAVE_LINUX_IP_MP_ALG_H,,RTA_MP exist in rtnetlink)
 +    AC_MSG_RESULT(yes)
 +  else
 +    AC_MSG_RESULT(no)
        if (src)
          addattr_l (&req.n, sizeof req, RTA_PREFSRC, &src->ipv4, bytelen);
  
-+#ifdef HAVE_RT_MP_ALGO
++#ifdef HAVE_LINUX_IP_MP_ALG_H
 +       if (zebrad.mpath != IP_MP_ALG_NONE)
 +       {
 +             if (IS_ZEBRA_DEBUG_KERNEL)
  };
  
  \f
-+#ifdef HAVE_RT_MP_ALGO
++#ifdef HAVE_LINUX_IP_MP_ALG_H
 +DEFUN (multipath_rr,
 +       multipath_rr_cmd,
 +       "multipath rr",
 +        1
 +};
 +
-+#endif /* HAVE_RT_MP_ALGO */
++#endif /* HAVE_LINUX_IP_MP_ALG_H */
 +
  /* Initialisation of zebra and installation of commands. */
  void
    install_node (&table_node, config_write_table);
    install_node (&forwarding_node, config_write_forwarding);
  
-+#ifdef HAVE_RT_MP_ALGO
++#ifdef HAVE_LINUX_IP_MP_ALG_H
 +  install_node (&multipath_node, config_write_multipath);
 +#endif
 +
    install_element (VIEW_NODE, &show_table_cmd);
    install_element (ENABLE_NODE, &show_table_cmd);
    install_element (CONFIG_NODE, &config_table_cmd);
-+#ifdef HAVE_RT_MP_ALGO
++#ifdef HAVE_LINUX_IP_MP_ALG_H
 +  install_element (CONFIG_NODE, &multipath_rr_cmd);
 +  install_element (CONFIG_NODE, &multipath_drr_cmd);
 +  install_element (CONFIG_NODE, &multipath_random_cmd);
 +  install_element (CONFIG_NODE, &multipath_wrandom_cmd);
 +  install_element (CONFIG_NODE, &no_multipath_cmd);
 +  install_element (ENABLE_NODE, &show_multipath_cmd);
-+#endif /* HAVE_RT_MP_ALGO */
++#endif /* HAVE_LINUX_IP_MP_ALG_H */
  #endif /* HAVE_NETLINK */
  
  #ifdef HAVE_IPV6