Hello, I recently solved this FTBFS issue in Ubuntu with a set of patches that fix the implicit function declaration and a type error with the Debian version of tinycdb. I've attached them to this reply.
Thanks, Lena Voytek
Description: Fix implicit declaration of trans_net in handle_irc.c Author: Lena Voytek <lena.voy...@canonical.com> Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066953 Last-Update: 2025-03-12 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/src/bnetd/handle_irc.c +++ b/src/bnetd/handle_irc.c @@ -71,6 +71,7 @@ #include "common/xalloc.h" #include "ctype.h" #include "common/setup_after.h" +#include "common/trans.h" typedef int (* t_irc_command)(t_connection * conn, int numparams, char ** params, char * text);
Description: Use fileno to provide int to system version of cdb_make_start The bundled tinycdb version contains a cdb_make_start function that takes a FILE * variable for the cdbfile, while the version provided in Debian and Ubuntu takes an int. Both functions are otherwise identical. This change fixes a failure to build due to implicit type conversion. Author: Lena Voytek <lena.voy...@canonical.com> Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066953 Last-Update: 2025-03-12 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/src/bnetd/file_cdb.c +++ b/src/bnetd/file_cdb.c @@ -121,6 +121,7 @@ static int cdb_write_attrs(const char *filename, const t_hlist *attributes) { FILE *cdbfile; + int fd; t_hlist *curr; t_attr *attr; struct cdb_make cdbm; @@ -130,7 +131,14 @@ return -1; } - cdb_make_start(&cdbm, cdbfile); + fd = fileno(cdbfile); + + if (fd == -1) { + eventlog(eventlog_level_error, __FUNCTION__, "unable to obtain file descriptor for file \"%s\" ",filename); + return -1; + } + + cdb_make_start(&cdbm, fd); hlist_for_each(curr,attributes) { attr = hlist_entry(curr, t_attr, link);
signature.asc
Description: This is a digitally signed message part