Package: xdelta Version: 1.1.3-9 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hi, The xdelta package currently fails to build from source on the Hurd due to test/xdeltatest.c using MAXPATHLEN. The patch below fixes this issue. Thanks, --- test/xdeltatest.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/test/xdeltatest.c b/test/xdeltatest.c index afb278a..34416a0 100644 --- a/test/xdeltatest.c +++ b/test/xdeltatest.c @@ -46,6 +46,10 @@ #include <stdio.h> #include <zlib.h> +#ifndef MAXPATHLEN +# define MAXPATHLEN 4096 +#endif + #include "xdelta.h" ////////////////////////////////////////////////////////////////////// -- 1.7.5.4 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org