Package: insserv Version: 1.14.0-5.1 Severity: important Tags: patch Hi! I'm afraid insserv fails to build on hurd:
insserv.c:1199:15: error: 'MAXSYMLINKS' undeclared (first use in this function) Patch attached. As this FTBFS was uncovered by my NMU fixing #777914, I'm kind of responsible and thus will upload another NMU to DELAYED/7 -- hurd is not a release architecture but as insserv is effectively essential there, this bug holds the entire port.
--- insserv-1.14.0.orig/insserv.c +++ insserv-1.14.0/insserv.c @@ -71,6 +71,10 @@ # endif #endif +#ifndef MAXSYMLINKS +# define MAXSYMLINKS 20 +#endif + #ifdef SUSE # define DEFAULT_START_LVL "3 5" # define DEFAULT_STOP_LVL "3 5"