diff -Nru pg-bsd-indent-2.1.1/debian/changelog pg-bsd-indent-2.1.1/debian/changelog --- pg-bsd-indent-2.1.1/debian/changelog 2023-02-17 07:22:24.000000000 +0000 +++ pg-bsd-indent-2.1.1/debian/changelog 2023-09-27 20:39:49.000000000 +0000 @@ -1,3 +1,9 @@ +pg-bsd-indent (2.1.1-5) unstable; urgency=medium + + * Define PATH_MAX and MAXPATHLEN on hurd. + + -- Christoph Berg Wed, 27 Sep 2023 20:39:49 +0000 + pg-bsd-indent (2.1.1-4) unstable; urgency=medium * debian/control (Uploaders): Updated. diff -Nru pg-bsd-indent-2.1.1/debian/patches/path_max pg-bsd-indent-2.1.1/debian/patches/path_max --- pg-bsd-indent-2.1.1/debian/patches/path_max 1970-01-01 00:00:00.000000000 +0000 +++ pg-bsd-indent-2.1.1/debian/patches/path_max 2023-09-27 20:39:49.000000000 +0000 @@ -0,0 +1,14 @@ +--- a/indent.h ++++ b/indent.h +@@ -49,3 +49,11 @@ void pr_comment(void); + void set_defaults(void); + void set_option(char *); + void set_profile(const char *); ++ ++/* hurd-i386 fixes */ ++#ifndef MAXPATHLEN ++#define MAXPATHLEN 1024 ++#endif ++#ifndef PATH_MAX ++#define PATH_MAX 1024 ++#endif diff -Nru pg-bsd-indent-2.1.1/debian/patches/series pg-bsd-indent-2.1.1/debian/patches/series --- pg-bsd-indent-2.1.1/debian/patches/series 2020-07-27 12:38:39.000000000 +0000 +++ pg-bsd-indent-2.1.1/debian/patches/series 2023-09-27 20:39:49.000000000 +0000 @@ -1,2 +1,3 @@ makefile.patch gcc10_compile_fix.patch +path_max