Hi, in Debian 3.20 still doesn't fully compile but reports two errors. I found a patch in the Arch Linux repository, which fixes this issues. Patch should be attached.
Greetings Roland
Subject: Fix build with GCC 15 Origin: https://gitlab.archlinux.org/archlinux/packaging/packages/mailutils/-/blob/main/fix-build.patch Bug-Debian: https://bugs.debian.org/1097358 From: Sergej Pupykin <[email protected]> Last-Update: 2025-09-08 --- a/libmailutils/mailer/progmailer.c +++ b/libmailutils/mailer/progmailer.c @@ -45,7 +45,7 @@ struct _mu_progmailer { int fd; pid_t pid; - void (*sighandler)(); + void (*sighandler)(int); char *command; }; --- a/mh/scan.c +++ b/mh/scan.c @@ -200,7 +200,7 @@ clear_screen (void) char *clr = tgetstr ("cl", &buffer); if (clr) { - tputs(clr, 1, (int (*)())putstdout); + tputs(clr, 1, (int (*)(int))putstdout); return; } }
