diff -u kbuild-0.1.98svn2318/debian/changelog kbuild-0.1.98svn2318/debian/changelog --- kbuild-0.1.98svn2318/debian/changelog +++ kbuild-0.1.98svn2318/debian/changelog @@ -1,3 +1,10 @@ +kbuild (1:0.1.98svn2318-1ubuntu1) karmic; urgency=low + + * Applied patch from Fedora to fix build on POSIX.1-2008 systems. + LP: #441576. + + -- Felix Geyer Sat, 03 Oct 2009 19:44:58 +0200 + kbuild (1:0.1.98svn2318-1) unstable; urgency=low * new upstream version (Closes: #523311) diff -u kbuild-0.1.98svn2318/debian/control kbuild-0.1.98svn2318/debian/control --- kbuild-0.1.98svn2318/debian/control +++ kbuild-0.1.98svn2318/debian/control @@ -1,7 +1,8 @@ Source: kbuild Section: devel Priority: extra -Maintainer: Torsten Werner +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Torsten Werner Build-Depends: autoconf, automake, byacc, cdbs, cvs, debhelper (>= 5), flex, libacl1-dev, quilt Standards-Version: 3.8.1 only in patch2: unchanged: --- kbuild-0.1.98svn2318.orig/src/ash/output.c +++ kbuild-0.1.98svn2318/src/ash/output.c @@ -230,6 +230,7 @@ va_end(ap); } +#if 0 void dprintf(const char *fmt, ...) { @@ -240,6 +241,7 @@ va_end(ap); flushout(out2); } +#endif void fmtstr(char *outbuf, size_t length, const char *fmt, ...) only in patch2: unchanged: --- kbuild-0.1.98svn2318.orig/src/ash/output.h +++ kbuild-0.1.98svn2318/src/ash/output.h @@ -65,8 +65,10 @@ __attribute__((__format__(__printf__,2,3))); void out1fmt(const char *, ...) __attribute__((__format__(__printf__,1,2))); +#if 0 void dprintf(const char *, ...) __attribute__((__format__(__printf__,1,2))); +#endif void fmtstr(char *, size_t, const char *, ...) __attribute__((__format__(__printf__,3,4))); void doformat(struct output *, const char *, va_list);