Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5
@ 2016-01-30 15:40 Bernd Kuhls
  2016-01-30 15:40 ` [Buildroot] [PATCH 2/2] package/libndp: fix musl build Bernd Kuhls
  2016-01-31 13:17 ` [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Bernd Kuhls @ 2016-01-30 15:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libndp/libndp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libndp/libndp.mk b/package/libndp/libndp.mk
index c40a017..c880b7e 100644
--- a/package/libndp/libndp.mk
+++ b/package/libndp/libndp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBNDP_VERSION = v1.4
+LIBNDP_VERSION = v1.5
 LIBNDP_SITE = $(call github,jpirko,libndp,$(LIBNDP_VERSION))
 LIBNDP_LICENSE = LGPLv2.1+
 LIBNDP_LICENSE_FILES = COPYING
-- 
2.7.0.rc3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/libndp: fix musl build
  2016-01-30 15:40 [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Bernd Kuhls
@ 2016-01-30 15:40 ` Bernd Kuhls
  2016-02-02 15:03   ` Arnout Vandecappelle
  2016-02-07 11:29   ` Thomas Petazzoni
  2016-01-31 13:17 ` [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Peter Korsgaard
  1 sibling, 2 replies; 5+ messages in thread
From: Bernd Kuhls @ 2016-01-30 15:40 UTC (permalink / raw)
  To: buildroot

Fixes
http://autobuild.buildroot.net/results/d42/d42bebe51bbec38f131840b6bbefdc162f0ad194/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/libndp/0001-ndptool.c-Fix-musl-build.patch | 30 ++++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 package/libndp/0001-ndptool.c-Fix-musl-build.patch

diff --git a/package/libndp/0001-ndptool.c-Fix-musl-build.patch b/package/libndp/0001-ndptool.c-Fix-musl-build.patch
new file mode 100644
index 0000000..547598c
--- /dev/null
+++ b/package/libndp/0001-ndptool.c-Fix-musl-build.patch
@@ -0,0 +1,30 @@
+From 561f80b9a848be923f37bf1afedbecf92da3b2e7 Mon Sep 17 00:00:00 2001
+From: Bernd Kuhls <bernd.kuhls@t-online.de>
+Date: Sat, 30 Jan 2016 16:36:39 +0100
+Subject: [PATCH 1/1] ndptool.c: Fix musl build
+
+Fixes a build issue with the musl C library
+http://autobuild.buildroot.net/results/d42/d42bebe51bbec38f131840b6bbefdc162f0ad194/build-end.log
+
+Patch sent upstream: https://github.com/jpirko/libndp/pull/7
+
+Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
+---
+ utils/ndptool.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/utils/ndptool.c b/utils/ndptool.c
+index 04ec4e1..c6ef48c 100644
+--- a/utils/ndptool.c
++++ b/utils/ndptool.c
+@@ -27,6 +27,7 @@
+ #include <netinet/in.h>
+ #include <arpa/inet.h>
+ #include <errno.h>
++#include <sys/select.h>
+ #include <ndp.h>
+ 
+ enum verbosity_level {
+-- 
+2.7.0.rc3
+
-- 
2.7.0.rc3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5
  2016-01-30 15:40 [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Bernd Kuhls
  2016-01-30 15:40 ` [Buildroot] [PATCH 2/2] package/libndp: fix musl build Bernd Kuhls
@ 2016-01-31 13:17 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2016-01-31 13:17 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/libndp: fix musl build
  2016-01-30 15:40 ` [Buildroot] [PATCH 2/2] package/libndp: fix musl build Bernd Kuhls
@ 2016-02-02 15:03   ` Arnout Vandecappelle
  2016-02-07 11:29   ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2016-02-02 15:03 UTC (permalink / raw)
  To: buildroot

On 30-01-16 16:40, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/d42/d42bebe51bbec38f131840b6bbefdc162f0ad194/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


 Regards,
 Arnout

> ---
>  package/libndp/0001-ndptool.c-Fix-musl-build.patch | 30 ++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>  create mode 100644 package/libndp/0001-ndptool.c-Fix-musl-build.patch
> 
> diff --git a/package/libndp/0001-ndptool.c-Fix-musl-build.patch b/package/libndp/0001-ndptool.c-Fix-musl-build.patch
> new file mode 100644
> index 0000000..547598c
> --- /dev/null
> +++ b/package/libndp/0001-ndptool.c-Fix-musl-build.patch
> @@ -0,0 +1,30 @@
> +From 561f80b9a848be923f37bf1afedbecf92da3b2e7 Mon Sep 17 00:00:00 2001
> +From: Bernd Kuhls <bernd.kuhls@t-online.de>
> +Date: Sat, 30 Jan 2016 16:36:39 +0100
> +Subject: [PATCH 1/1] ndptool.c: Fix musl build
> +
> +Fixes a build issue with the musl C library
> +http://autobuild.buildroot.net/results/d42/d42bebe51bbec38f131840b6bbefdc162f0ad194/build-end.log
> +
> +Patch sent upstream: https://github.com/jpirko/libndp/pull/7
> +
> +Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> +---
> + utils/ndptool.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/utils/ndptool.c b/utils/ndptool.c
> +index 04ec4e1..c6ef48c 100644
> +--- a/utils/ndptool.c
> ++++ b/utils/ndptool.c
> +@@ -27,6 +27,7 @@
> + #include <netinet/in.h>
> + #include <arpa/inet.h>
> + #include <errno.h>
> ++#include <sys/select.h>
> + #include <ndp.h>
> + 
> + enum verbosity_level {
> +-- 
> +2.7.0.rc3
> +
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 2/2] package/libndp: fix musl build
  2016-01-30 15:40 ` [Buildroot] [PATCH 2/2] package/libndp: fix musl build Bernd Kuhls
  2016-02-02 15:03   ` Arnout Vandecappelle
@ 2016-02-07 11:29   ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-02-07 11:29 UTC (permalink / raw)
  To: buildroot

Dear Bernd Kuhls,

On Sat, 30 Jan 2016 16:40:07 +0100, Bernd Kuhls wrote:
> Fixes
> http://autobuild.buildroot.net/results/d42/d42bebe51bbec38f131840b6bbefdc162f0ad194/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/libndp/0001-ndptool.c-Fix-musl-build.patch | 30 ++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>  create mode 100644 package/libndp/0001-ndptool.c-Fix-musl-build.patch

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-07 11:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-30 15:40 [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Bernd Kuhls
2016-01-30 15:40 ` [Buildroot] [PATCH 2/2] package/libndp: fix musl build Bernd Kuhls
2016-02-02 15:03   ` Arnout Vandecappelle
2016-02-07 11:29   ` Thomas Petazzoni
2016-01-31 13:17 ` [Buildroot] [PATCH 1/2] package/libndp: bump version to 1.5 Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox