[oe-commits] Jeremy Lainé : libpcap: add patch to use LDFLAGS ( fixes QA error)

GIT User account git at amethyst.openembedded.net
Mon Apr 6 11:12:19 UTC 2009


Module: openembedded.git
Branch: stable/2009
Commit: feb216073f023c41c1368e95e3a4a620252d4b40
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=feb216073f023c41c1368e95e3a4a620252d4b40

Author: Jeremy Lainé <jeremy.laine at m4x.org>
Date:   Sun Apr  5 00:35:50 2009 +0000

libpcap: add patch to use LDFLAGS (fixes QA error)

Signed-off-by: Jeremy Lainé <jeremy.laine at m4x.org>
Acked-by: Koen Kooi <koen at openembedded.org>

---

 recipes/libpcap/libpcap-1.0.0/ldflags.patch |   12 ++++++++++++
 recipes/libpcap/libpcap_1.0.0.bb            |    3 ++-
 2 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/recipes/libpcap/libpcap-1.0.0/ldflags.patch b/recipes/libpcap/libpcap-1.0.0/ldflags.patch
new file mode 100644
index 0000000..66ab5f7
--- /dev/null
+++ b/recipes/libpcap/libpcap-1.0.0/ldflags.patch
@@ -0,0 +1,12 @@
+diff -urN libpcap-1.0.0.orig/Makefile.in libpcap-1.0.0/Makefile.in
+--- libpcap-1.0.0.orig/Makefile.in	2008-10-28 01:26:13.000000000 +0000
++++ libpcap-1.0.0/Makefile.in	2009-04-02 13:54:20.000000000 +0000
+@@ -326,7 +326,7 @@
+ #
+ libpcap.so: $(OBJ)
+ 	@rm -f $@
+-	$(CC) -shared -Wl,-soname,$@.1 -o $@.`cat $(srcdir)/VERSION` $(OBJ) $(DAGLIBS)
++	$(CC) $(LDFLAGS) -shared -Wl,-soname,$@.1 -o $@.`cat $(srcdir)/VERSION` $(OBJ) $(DAGLIBS)
+ 
+ #
+ # The following rule succeeds, but the result is untested.
diff --git a/recipes/libpcap/libpcap_1.0.0.bb b/recipes/libpcap/libpcap_1.0.0.bb
index b85bf4c..6dfc056 100644
--- a/recipes/libpcap/libpcap_1.0.0.bb
+++ b/recipes/libpcap/libpcap_1.0.0.bb
@@ -1,9 +1,10 @@
 require libpcap.inc
 
-PR = "r5"
+PR = "r6"
 SRC_URI = "http://www.tcpdump.org/release/libpcap-${PV}.tar.gz"
 SRC_URI += "file://aclocal.patch;patch=1"
 SRC_URI += "file://ieee80215-arphrd.patch;patch=1"
+SRC_URI += "file://ldflags.patch;patch=1"
 
 do_compile () {
     oe_runmake





More information about the Openembedded-commits mailing list