1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-19 08:48:02 +03:00
openwrt-xburst/package/ipsec-tools/patches/03-linux_2.6.19_rtnetlink_changes.diff
nico 2c04bf02f3 update ipsec-tools to 0.6.6, add a patch to build on 2.6.19, use Configure template
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5800 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-12-15 16:15:35 +00:00

22 lines
727 B
Diff

diff -ruN ipsec-tools-0.6.6-old/src/racoon/grabmyaddr.c ipsec-tools-0.6.6-new/src/racoon/grabmyaddr.c
--- ipsec-tools-0.6.6-old/src/racoon/grabmyaddr.c 2005-07-16 06:41:01.000000000 +0200
+++ ipsec-tools-0.6.6-new/src/racoon/grabmyaddr.c 2006-12-15 15:50:13.000000000 +0100
@@ -77,10 +77,17 @@
#ifdef __linux__
#include <linux/types.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 HAVE_GETIFADDRS
#define HAVE_GETIFADDRS
#define NEED_LINUX_GETIFADDRS
#endif
+#ifndef IFA_RTA
+# define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
+#endif
#endif
#ifndef HAVE_GETIFADDRS