Source: gimp Version: 2.10.8-2 Severity: important Tags: ftbfs, patch User: [email protected] Usertags: hurd
Hello, Currently gimp FTBFS on GNU/Hurd due to a new PATH_MAX issue. The attached patch fixes that problem. Maybe both hurd-specific patches should be submitted upstream, even if 01_hurd_ftbfs.patch from 2018 is flagged as no? Thanks!
--- a/plug-ins/common/qbist.c 2018-11-08 14:58:41.000000000 +0100 +++ b/plug-ins/common/qbist.c 2019-08-06 16:32:00.000000000 +0200 @@ -39,6 +39,9 @@ #include "libgimp/stdplugins-intl.h" +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif /** qbist renderer ***********************************************************/

