tag 664936 +patch thanks Hi,
Same as #664932 Here is a patch fixing the FTBFS. As I don't have the required hardware to test it, I'm reluctant to actually upload the NMU. On Wed, Mar 21, 2012 at 09:25:51PM +0100, Lucas Nussbaum wrote: > Source: ax25mail-utils > Version: 0.11-6.1 > Severity: serious > Tags: wheezy sid > User: debian...@lists.debian.org > Usertags: qa-ftbfs-20120321 qa-ftbfs > Justification: FTBFS on amd64 > > > ulistd.c:57:52: fatal error: netax25/kernel_ax25.h: No such file or > > directory -- Simon Paillard
diffstat for ax25mail-utils_0.11-6.1 ax25mail-utils_0.11-6.2 config.guess | 149 +++++++++++++++++++++---------------------------------- config.sub | 47 ++++++++++++----- debian/changelog | 9 +++ ulistd/ulistd.c | 8 -- 4 files changed, 103 insertions(+), 110 deletions(-) diff -u ax25mail-utils-0.11/debian/changelog ax25mail-utils-0.11/debian/changelog --- ax25mail-utils-0.11/debian/changelog +++ ax25mail-utils-0.11/debian/changelog @@ -1,3 +1,12 @@ +ax25mail-utils (0.11-6.2) unstable; urgency=low + + * Non-maintainer upload. + * Fix "FTBFS: ulistd.c:57:52: fatal error: netax25/kernel_ax25.h: No + such file or directory" <explain what you changed and why> (Closes: + #664936) + + -- Simon Paillard <spaill...@debian.org> Fri, 08 Jun 2012 23:55:40 +0200 + ax25mail-utils (0.11-6.1) unstable; urgency=low * Retiring - remove myself from the uploaders list. diff -u ax25mail-utils-0.11/ulistd/ulistd.c ax25mail-utils-0.11/ulistd/ulistd.c --- ax25mail-utils-0.11/ulistd/ulistd.c +++ ax25mail-utils-0.11/ulistd/ulistd.c @@ -54,17 +54,11 @@ #include <sys/socket.h> #ifdef NEW_AXLIB -#include <netax25/kernel_ax25.h> // new for libax25 -#include <netax25/kernel_rose.h> // required by axlib.h -#include <netax25/axlib.h> +#include <linux/ax25.h> // new for libax25 #include <netax25/axconfig.h> -#include <netax25/daemon.h> #else #include <linux/ax25.h> #include <linux/rose.h> -#include <ax25/axutils.h> -#include <ax25/axconfig.h> -#include <ax25/daemon.h> #endif #ifndef NEW_AXLIB