Commit 2d07ad80 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Thomas Petazzoni
Browse files

libndp: new package



[Thomas: add patch to add stdarg.h include needed on uClibc, add
missing upstream URL in Config.in, fix license to be LGPLv2.1+ instead
of LGPLv2.1]

Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent af156db8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -714,6 +714,7 @@ source "package/libmbus/Config.in"
source "package/libmicrohttpd/Config.in"
source "package/libmnl/Config.in"
source "package/libmodbus/Config.in"
source "package/libndp/Config.in"
source "package/libnetfilter_acct/Config.in"
source "package/libnetfilter_conntrack/Config.in"
source "package/libnetfilter_cthelper/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBNDP
	bool "libndp"
	depends on BR2_INET_IPV6
	help
	  This package contains a library which provides a wrapper
	  for IPv6 Neighbor Discovery Protocol. It also provides a tool
	  named ndptool for sending and receiving NDP messages.

	  https://github.com/jpirko/libndp

comment "libndp needs a toolchain w/ IPv6"
	depends on !BR2_INET_IPV6
+16 −0
Original line number Diff line number Diff line
Add missing <stdarg.h> include for va_list

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Index: b/include/ndp.h
===================================================================
--- a/include/ndp.h
+++ b/include/ndp.h
@@ -20,6 +20,7 @@
 #ifndef _NDP_H_
 #define _NDP_H_
 
+#include <stdarg.h>
 #include <stdbool.h>
 #include <netinet/in.h>
 
+15 −0
Original line number Diff line number Diff line
################################################################################
#
# libndp
#
################################################################################

LIBNDP_VERSION = v1.2
LIBNDP_SITE = $(call github,jpirko,libndp,$(LIBNDP_VERSION))
LIBNDP_LICENSE = LGPLv2.1+
LIBNDP_LICENSE_FILES = COPYING
LIBNDP_AUTORECONF = YES
LIBNDP_INSTALL_STAGING = YES
LIBNDP_CONF_OPT = --disable-debug

$(eval $(autotools-package))