* [Buildroot] [PATCH] libpcap: update libnl fix patch
@ 2015-03-14 11:21 Gustavo Zacarias
2015-03-14 12:20 ` Romain Naour
2015-03-14 12:28 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Gustavo Zacarias @ 2015-03-14 11:21 UTC (permalink / raw)
To: buildroot
We also need to nuke bad LIBS assumptions, fixes:
http://autobuild.buildroot.net/results/bbd/bbde2b62d4b677e71a62b25fb9ccb4ac4764a4aa/
http://autobuild.buildroot.net/results/5de/5dedfb19df476a633e4449d44e7ba2778bf5b737/
...and lots more of those kind.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libpcap/0001-remove-libnl-include-path.patch | 14 ++++++++++----
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/package/libpcap/0001-remove-libnl-include-path.patch b/package/libpcap/0001-remove-libnl-include-path.patch
index a4039ef..d0760d4 100644
--- a/package/libpcap/0001-remove-libnl-include-path.patch
+++ b/package/libpcap/0001-remove-libnl-include-path.patch
@@ -4,16 +4,22 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Gustavo: update for 1.7.2]
diff -Nura libpcap-1.7.2.orig/configure.in libpcap-1.7.2/configure.in
---- libpcap-1.7.2.orig/configure.in 2015-03-11 10:02:44.416189921 -0300
-+++ libpcap-1.7.2/configure.in 2015-03-11 10:03:03.967633673 -0300
-@@ -466,9 +466,8 @@
+--- libpcap-1.7.2.orig/configure.in 2015-03-14 08:02:05.538706347 -0300
++++ libpcap-1.7.2/configure.in 2015-03-14 08:17:22.637519050 -0300
+@@ -461,14 +461,13 @@
+ #
+ # Yes, we have libnl 3.x.
+ #
+- LIBS="${libnldir} -lnl-genl-3 -lnl-3 $LIBS"
++ LIBS="-lnl-genl-3 -lnl-3 $LIBS"
+ AC_DEFINE(HAVE_LIBNL,1,[if libnl exists])
AC_DEFINE(HAVE_LIBNL_3_x,1,[if libnl exists and is version 3.x])
AC_DEFINE(HAVE_LIBNL_NLE,1,[libnl has NLE_FAILURE])
AC_DEFINE(HAVE_LIBNL_SOCKETS,1,[libnl has new-style socket api])
- V_INCLS="$V_INCLS ${incdir}"
have_any_nl="yes"
- ],[], ${incdir} ${libnldir} -lnl-genl-3 -lnl-3 )
-+ ],[], ${libnldir} -lnl-genl-3 -lnl-3 )
++ ],[], -lnl-genl-3 -lnl-3 )
if test x$have_any_nl = xno ; then
#
--
2.0.5
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [PATCH] libpcap: update libnl fix patch
2015-03-14 11:21 [Buildroot] [PATCH] libpcap: update libnl fix patch Gustavo Zacarias
@ 2015-03-14 12:20 ` Romain Naour
2015-03-14 12:28 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Romain Naour @ 2015-03-14 12:20 UTC (permalink / raw)
To: buildroot
Hi Gustavo,
Le 14/03/2015 12:21, Gustavo Zacarias a ?crit :
> We also need to nuke bad LIBS assumptions, fixes:
> http://autobuild.buildroot.net/results/bbd/bbde2b62d4b677e71a62b25fb9ccb4ac4764a4aa/
> http://autobuild.buildroot.net/results/5de/5dedfb19df476a633e4449d44e7ba2778bf5b737/
> ...and lots more of those kind.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
Before your patch, pcap-config --static --libs returned "-Llinux/lib/.libs" and
that why tcpreplay package was broken.
Build tested with this patch applied, now "-Llinux/lib/.libs" is gone.
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Tested-by: Romain Naour <romain.naour@openwide.fr>
Best regards,
Romain
> package/libpcap/0001-remove-libnl-include-path.patch | 14 ++++++++++----
> 1 file changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/package/libpcap/0001-remove-libnl-include-path.patch b/package/libpcap/0001-remove-libnl-include-path.patch
> index a4039ef..d0760d4 100644
> --- a/package/libpcap/0001-remove-libnl-include-path.patch
> +++ b/package/libpcap/0001-remove-libnl-include-path.patch
> @@ -4,16 +4,22 @@ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> [Gustavo: update for 1.7.2]
>
> diff -Nura libpcap-1.7.2.orig/configure.in libpcap-1.7.2/configure.in
> ---- libpcap-1.7.2.orig/configure.in 2015-03-11 10:02:44.416189921 -0300
> -+++ libpcap-1.7.2/configure.in 2015-03-11 10:03:03.967633673 -0300
> -@@ -466,9 +466,8 @@
> +--- libpcap-1.7.2.orig/configure.in 2015-03-14 08:02:05.538706347 -0300
> ++++ libpcap-1.7.2/configure.in 2015-03-14 08:17:22.637519050 -0300
> +@@ -461,14 +461,13 @@
> + #
> + # Yes, we have libnl 3.x.
> + #
> +- LIBS="${libnldir} -lnl-genl-3 -lnl-3 $LIBS"
> ++ LIBS="-lnl-genl-3 -lnl-3 $LIBS"
> + AC_DEFINE(HAVE_LIBNL,1,[if libnl exists])
> AC_DEFINE(HAVE_LIBNL_3_x,1,[if libnl exists and is version 3.x])
> AC_DEFINE(HAVE_LIBNL_NLE,1,[libnl has NLE_FAILURE])
> AC_DEFINE(HAVE_LIBNL_SOCKETS,1,[libnl has new-style socket api])
> - V_INCLS="$V_INCLS ${incdir}"
> have_any_nl="yes"
> - ],[], ${incdir} ${libnldir} -lnl-genl-3 -lnl-3 )
> -+ ],[], ${libnldir} -lnl-genl-3 -lnl-3 )
> ++ ],[], -lnl-genl-3 -lnl-3 )
>
> if test x$have_any_nl = xno ; then
> #
>
^ permalink raw reply [flat|nested] 3+ messages in thread* [Buildroot] [PATCH] libpcap: update libnl fix patch
2015-03-14 11:21 [Buildroot] [PATCH] libpcap: update libnl fix patch Gustavo Zacarias
2015-03-14 12:20 ` Romain Naour
@ 2015-03-14 12:28 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-03-14 12:28 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Sat, 14 Mar 2015 08:21:15 -0300, Gustavo Zacarias wrote:
> We also need to nuke bad LIBS assumptions, fixes:
> http://autobuild.buildroot.net/results/bbd/bbde2b62d4b677e71a62b25fb9ccb4ac4764a4aa/
> http://autobuild.buildroot.net/results/5de/5dedfb19df476a633e4449d44e7ba2778bf5b737/
> ...and lots more of those kind.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Applied, thanks! Thanks a lot for looking into this!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-14 12:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-14 11:21 [Buildroot] [PATCH] libpcap: update libnl fix patch Gustavo Zacarias
2015-03-14 12:20 ` Romain Naour
2015-03-14 12:28 ` Thomas Petazzoni
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.