summaryrefslogtreecommitdiff
path: root/meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-06-30 10:31:47 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-01 14:13:07 +0100
commitd92a3c09f377d259547311e11910d539953533d8 (patch)
tree24dc4eb7329e4d2d19c0cf8d6ce45e26d4e751cd /meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch
parent64b82f8acd84a2e816b5474ff8fd5a4c4390c6a4 (diff)
downloadopenembedded-core-d92a3c09f377d259547311e11910d539953533d8.tar.gz
openembedded-core-d92a3c09f377d259547311e11910d539953533d8.tar.bz2
openembedded-core-d92a3c09f377d259547311e11910d539953533d8.tar.xz
openembedded-core-d92a3c09f377d259547311e11910d539953533d8.zip
libpcap: Upgraded to version 1.1.1
Remove config-fixes.patch and ldflags.patch since the change is already in the latest version Remove shared.patch since it is not being used. Rebase aclocal.patch according to the latest package version Also contains Metadata fix Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch')
-rw-r--r--meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch b/meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch
deleted file mode 100644
index f29c7cb54..000000000
--- a/meta/packages/libpcap/libpcap-1.0.0/ieee80215-arphrd.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Index: libpcap-1.0.0/pcap-linux.c
-===================================================================
---- libpcap-1.0.0.orig/pcap-linux.c 2009-01-28 11:58:54.000000000 +0300
-+++ libpcap-1.0.0/pcap-linux.c 2009-01-28 11:59:04.000000000 +0300
-@@ -1616,6 +1616,17 @@
- * so let's use "Linux-cooked" mode. Jean II */
- //handle->md.cooked = 1;
- break;
-+#ifndef ARPHRD_IEEE80215
-+#define ARPHRD_IEEE80215 804
-+#endif
-+#ifndef ARPHRD_IEEE80215_PHY
-+#define ARPHRD_IEEE80215_PHY 805
-+#endif
-+
-+ case ARPHRD_IEEE80215:
-+ case ARPHRD_IEEE80215_PHY:
-+ handle->linktype = DLT_IEEE802_15_4;
-+ break;
-
- /* ARPHRD_LAPD is unofficial and randomly allocated, if reallocation
- * is needed, please report it to <daniele@orlandi.com> */