packages/net/srelay/patches/002-linux_2.6.19_rtnetlink_changes.patch
olli 45012a8bdb [Packages] net/srelay: Fix compilation
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10533 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-02-28 12:27:19 +00:00

24 lines
914 B
Diff

Index: srelay-0.4.6/get-bind.c
===================================================================
--- srelay-0.4.6.orig/get-bind.c 2008-02-28 13:21:29.000000000 +0100
+++ srelay-0.4.6/get-bind.c 2008-02-28 13:21:30.000000000 +0100
@@ -50,6 +50,18 @@
#include <asm/types.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
+#include <linux/version.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+# include <linux/if_addr.h>
+#endif
+#ifndef IFA_RTA
+# define IFA_RTA(r) ((struct rtattr *) ((char *)(r) + NLMSG_ALIGN (sizeof (struct ifaddrmsg))))
+# define IFA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifaddrmsg))
+#endif
+#ifndef IFLA_RTA
+# define IFLA_RTA(r) ((struct rtattr *) ((char *)(r) + NLMSG_ALIGN (sizeof (struct ifinfomsg))))
+# define IFLA_PAYLOAD(n) NLMSG_PAYLOAD (n, sizeof (struct ifinfomsg))
+#endif
static int get_ifconf(int, struct addrinfo *);
#endif /* defined(LINUX) */