summaryrefslogtreecommitdiff
path: root/packages/libnl
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/libnl
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/libnl')
-rw-r--r--packages/libnl/files/fix-includes.patch13
-rw-r--r--packages/libnl/files/local-includes-and-avoid-wrong-ldflags.patch13
-rw-r--r--packages/libnl/libnl_1.1.bb19
3 files changed, 0 insertions, 45 deletions
diff --git a/packages/libnl/files/fix-includes.patch b/packages/libnl/files/fix-includes.patch
deleted file mode 100644
index b172fd2f86..0000000000
--- a/packages/libnl/files/fix-includes.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -ruN libnl-1.1/lib/route/link/vlan.c libnl-1.1-new/lib/route/link/vlan.c
---- libnl-1.1/lib/route/link/vlan.c 2008-01-14 18:48:45.000000000 +0300
-+++ libnl-1.1-new/lib/route/link/vlan.c 2009-01-30 10:55:09.000000000 +0300
-@@ -26,7 +26,9 @@
- #include <netlink/route/link/info-api.h>
- #include <netlink/route/link/vlan.h>
-
-+#ifndef VLAN_FLAG_REORDER_HDR
- #include <linux/if_vlan.h>
-+#endif
-
- /** @cond SKIP */
- #define VLAN_HAS_ID (1<<0)
diff --git a/packages/libnl/files/local-includes-and-avoid-wrong-ldflags.patch b/packages/libnl/files/local-includes-and-avoid-wrong-ldflags.patch
deleted file mode 100644
index 428df53a94..0000000000
--- a/packages/libnl/files/local-includes-and-avoid-wrong-ldflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- libnl-1.0-pre8/Makefile.opts.in.orig 2007-11-21 18:25:39.000000000 +0100
-+++ libnl-1.0-pre8/Makefile.opts.in 2008-04-04 23:38:40.000000000 +0200
-@@ -10,8 +10,8 @@
- #
-
- CC := @CC@
--CFLAGS := @CFLAGS@
--LDFLAGS := @LDFLAGS@
-+CFLAGS := -I./include -I. -I../include @CFLAGS@
-+LDFLAGS :=
- CPPFLAGS := @CPPFLAGS@
- PACKAGE_NAME := @PACKAGE_NAME@
- PACKAGE_VERSION := @PACKAGE_VERSION@
diff --git a/packages/libnl/libnl_1.1.bb b/packages/libnl/libnl_1.1.bb
deleted file mode 100644
index dcca3c6e92..0000000000
--- a/packages/libnl/libnl_1.1.bb
+++ /dev/null
@@ -1,19 +0,0 @@
-DESCRIPTION = "libnl is a library for applications dealing with netlink sockets"
-SECTION = "libs/network"
-LICENSE = "LGPL"
-HOMEPAGE = "http://people.suug.ch/~tgr/libnl"
-PR = "r1"
-
-inherit autotools pkgconfig
-
-CFLAGS += '-DVLAN_FLAG_REORDER_HDR=1'
-
-SRC_URI = "\
- http://people.suug.ch/~tgr/libnl/files/libnl-${PV}.tar.gz \
- file://local-includes-and-avoid-wrong-ldflags.patch;patch=1 \
- file://fix-includes.patch;patch=1 \
-"
-
-do_stage () {
- autotools_stage_all prefix=${prefix}
-}