Package: mosquitto Version: 1.4.8-1 Severity: important Hi, the mosquitto package fails to build on Hurd citing the following error:
> In file included from /usr/include/errno.h:35:0, > from /usr/include/i386-gnu/bits/spin-lock-inline.h:35, > from /usr/include/pthread/pthread.h:516, > from /usr/include/pthread.h:2, > from ./mosquitto_internal.h:34, > from logging_mosq.c:21: > ../config.h:28:18: error: expected identifier before '(' token > # define EPROTO ECONNABORTED It turns out this is caused by a simple missing include inside the config.h header file: #include <errno.h> With that added the build completes. Thanks Amos