From: Alexandros C. Couloumbis Date: Thu, 14 Oct 2010 16:41:09 +0000 (+0000) Subject: net/quagga-unstable: fix compile issue on FreeBSD 8.1 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1ec207b5fab64c8843451eb6bc2ded9b115426ef;p=openwrt%2Fsvn-archive%2Fpackages.git net/quagga-unstable: fix compile issue on FreeBSD 8.1 SVN-Revision: 23448 --- diff --git a/net/quagga-unstable/patches/001-fix_ipctl_forwarding.patch b/net/quagga-unstable/patches/001-fix_ipctl_forwarding.patch new file mode 100644 index 000000000..e9a986410 --- /dev/null +++ b/net/quagga-unstable/patches/001-fix_ipctl_forwarding.patch @@ -0,0 +1,27 @@ +Add definitions for IPCTL_FORWARDING and IP6CTL_FORWARDING. + +Inspired from +http://svn.gnumonks.org/trunk/grouter/build/src/quagga/quagga/quagga-0.99.1-forward_sysctl-2.6.14.patch + +Signed-off-by: Thomas Petazzoni + +Index: quagga-0.99.16/zebra/ipforward_sysctl.c +=================================================================== +--- quagga-0.99.16.orig/zebra/ipforward_sysctl.c 2010-06-20 23:40:45.000000000 +0200 ++++ quagga-0.99.16/zebra/ipforward_sysctl.c 2010-06-20 23:41:37.000000000 +0200 +@@ -31,6 +31,15 @@ + + #define MIB_SIZ 4 + ++/* Fix for recent (2.6.14) kernel headers */ ++#ifndef IPCTL_FORWARDING ++#define IPCTL_FORWARDING NET_IPV4_FORWARD ++#endif ++ ++#ifndef IP6CTL_FORWARDING ++#define IP6CTL_FORWARDING NET_IPV6_FORWARDING ++#endif ++ + extern struct zebra_privs_t zserv_privs; + + /* IPv4 forwarding control MIB. */