From c4ad01d56cf1cd22798b40d004be4228e038f696 Mon Sep 17 00:00:00 2001 From: mirko Date: Mon, 6 Aug 2012 11:08:13 +0000 Subject: [PATCH] Fix knock build with the openwrt eglibc toolchain by including the limits.h from knockd.c. This will fix the error caused by undefined PATH_MAX variable. Signed-off-by: Mika Laitio git-svn-id: svn://svn.openwrt.org/openwrt/packages@33009 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/knock/patches/010_eglibc_define_PATH_MAX.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 net/knock/patches/010_eglibc_define_PATH_MAX.patch diff --git a/net/knock/patches/010_eglibc_define_PATH_MAX.patch b/net/knock/patches/010_eglibc_define_PATH_MAX.patch new file mode 100644 index 000000000..0e7f56ef8 --- /dev/null +++ b/net/knock/patches/010_eglibc_define_PATH_MAX.patch @@ -0,0 +1,11 @@ +diff -Naur knock-0.5/src/knockd.c knock-0.5-new/src/knockd.c +--- knock-0.5/src/knockd.c 2005-06-27 08:11:34.000000000 +0300 ++++ knock-0.5-new/src/knockd.c 2012-07-31 22:49:13.670323836 +0300 +@@ -46,6 +46,7 @@ + #include + #include + #include ++#include /* PATH_MAX in eglibc env */ + #include "list.h" + + static char version[] = "0.5";