summaryrefslogtreecommitdiffstats
path: root/package/aodv-uu/patches/004-linux_2.6.19_includes.patch
blob: 92cae3e1c822f331c855b46703d201fe637b9896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- aodv-uu-0.9.3-old/main.c	2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3/main.c	2006-12-16 22:27:36.000000000 +0100
@@ -26,6 +26,8 @@
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/stat.h>
+#include <linux/types.h>
+#include <linux/if.h>
 #include <linux/sockios.h>
 #include <linux/wireless.h>
 #include <getopt.h>
--- aodv-uu-0.9.3-old/nl.c	2006-09-20 19:58:38.000000000 +0200
+++ aodv-uu-0.9.3/nl.c	2006-12-16 22:29:55.000000000 +0100
@@ -33,6 +33,10 @@
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <linux/rtnetlink.h>
+#include <linux/version.h>
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,19)
+#include <linux/if_addr.h>
+#endif
 
 #include "defs.h"
 #include "lnx/kaodv-netlink.h"