diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2014-03-17 11:57:07 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-29 11:33:49 +0100 |
commit | 2d07ad8026eaedc3fb01c94ac56791aeef3202f5 (patch) | |
tree | 18987c2e9e99653016d0801e3943d1f1f668c34b /package/libndp/libndp-01-missing-stdarg-include.patch | |
parent | af156db8817efe27109b8cfc6933bc8ef6150fbb (diff) | |
download | buildroot-2d07ad8026eaedc3fb01c94ac56791aeef3202f5.tar.gz buildroot-2d07ad8026eaedc3fb01c94ac56791aeef3202f5.zip |
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: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libndp/libndp-01-missing-stdarg-include.patch')
-rw-r--r-- | package/libndp/libndp-01-missing-stdarg-include.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/libndp/libndp-01-missing-stdarg-include.patch b/package/libndp/libndp-01-missing-stdarg-include.patch new file mode 100644 index 0000000000..e10848ee0b --- /dev/null +++ b/package/libndp/libndp-01-missing-stdarg-include.patch @@ -0,0 +1,16 @@ +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> + |