diff -Nru easyh10-1.5/debian/changelog easyh10-1.5/debian/changelog --- easyh10-1.5/debian/changelog 2016-09-08 19:41:57.000000000 +0000 +++ easyh10-1.5/debian/changelog 2016-10-09 20:43:46.000000000 +0000 @@ -1,3 +1,16 @@ +easyh10 (1.5-4) unstable; urgency=medium + + * Fix the 40-fix-FTBFS-Hurd.patch. + + -- Allan Dixon Jr. Sun, 09 Oct 2016 15:43:46 -0500 + +easyh10 (1.5-3) unstable; urgency=medium + + * Bump DH level to 10. + * Fix a FTBFS in Hurd (patch). + + -- Allan Dixon Jr. Sun, 09 Oct 2016 08:13:27 -0500 + easyh10 (1.5-2) unstable; urgency=medium * New maintainer. (Closes: #760136) diff -Nru easyh10-1.5/debian/compat easyh10-1.5/debian/compat --- easyh10-1.5/debian/compat 2016-09-08 19:41:57.000000000 +0000 +++ easyh10-1.5/debian/compat 2016-10-09 16:25:12.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru easyh10-1.5/debian/control easyh10-1.5/debian/control --- easyh10-1.5/debian/control 2016-09-08 19:41:57.000000000 +0000 +++ easyh10-1.5/debian/control 2016-10-09 16:25:20.000000000 +0000 @@ -2,7 +2,7 @@ Section: sound Priority: optional Maintainer: Allan Dixon Jr. -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 10), dh-autoreconf, libid3tag0-dev Standards-Version: 3.9.8 diff -Nru easyh10-1.5/debian/patches/40-fix-FTBFS-Hurd.patch easyh10-1.5/debian/patches/40-fix-FTBFS-Hurd.patch --- easyh10-1.5/debian/patches/40-fix-FTBFS-Hurd.patch 1970-01-01 00:00:00.000000000 +0000 +++ easyh10-1.5/debian/patches/40-fix-FTBFS-Hurd.patch 2016-10-09 20:43:46.000000000 +0000 @@ -0,0 +1,18 @@ +Description: define PATH_MAX variable to fix a FTBFS in Hurd. +Author: Allan Dixon Jr. +Last-Update: 2016-10-09 +Index: easyh10-1.5/include/os.h +=================================================================== +--- easyh10-1.5.orig/include/os.h ++++ easyh10-1.5/include/os.h +@@ -3,6 +3,10 @@ + + #include + ++#if defined(__GNU__) && !defined(MAX_PATH) ++#define PATH_MAX 1024 ++#endif ++ + #if defined(WIN32) || defined(OS2) + typedef unsigned char uint8_t; + typedef unsigned int uint32_t; diff -Nru easyh10-1.5/debian/patches/series easyh10-1.5/debian/patches/series --- easyh10-1.5/debian/patches/series 2016-09-08 19:41:57.000000000 +0000 +++ easyh10-1.5/debian/patches/series 2016-10-09 20:43:46.000000000 +0000 @@ -1,3 +1,4 @@ 10-fix-autoconf.in.patch 20-dont-install-docs.patch 30-fix-spelling.patch +40-fix-FTBFS-Hurd.patch