Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package directfb trivial FTBFS fix on armel/armhf: add missing #include i could reproduce the problem on armhf (didn't try armel) unblock directfb/1.7.7-9 Andreas
diff -Nru directfb-1.7.7/debian/changelog directfb-1.7.7/debian/changelog --- directfb-1.7.7/debian/changelog 2018-03-29 18:33:45.000000000 +0200 +++ directfb-1.7.7/debian/changelog 2019-03-16 17:29:57.000000000 +0100 @@ -1,3 +1,10 @@ +directfb (1.7.7-9) unstable; urgency=medium + + * QA upload. + * Add missing #include to ensure makedev() is defined. (Closes: #924327) + + -- Andreas Beckmann <[email protected]> Sat, 16 Mar 2019 17:29:57 +0100 + directfb (1.7.7-8) unstable; urgency=medium * QA upload. @@ -115,7 +122,7 @@ * Non-maintainer upload. * Merge from 1.2.10.0-5.1: - - d/control: drop build depend on libts-dev. + - d/control: drop build depend on libts-dev. - d/libdirectfb-1.4-0.install.*: drop install libdirectfb_tslib.so - d/libdirectfb-dev.install.*: drop install libdirectfb_tslib.a * Merge from 1.2.10.0-5: diff -Nru directfb-1.7.7/debian/patches/94_fix_mknod.patch directfb-1.7.7/debian/patches/94_fix_mknod.patch --- directfb-1.7.7/debian/patches/94_fix_mknod.patch 2018-02-03 15:24:10.000000000 +0100 +++ directfb-1.7.7/debian/patches/94_fix_mknod.patch 2019-03-16 09:44:37.000000000 +0100 @@ -1,14 +1,12 @@ From: Debian Multimedia Maintainers <[email protected]> Date: Thu, 16 Mar 2017 20:48:20 +0100 -Subject: _fix_mknod +Subject: fix mknod and makedev --- gfxdrivers/davinci/davinci_c64x.c | 2 ++ 1 file changed, 2 insertions(+) -diff --git a/gfxdrivers/davinci/davinci_c64x.c b/gfxdrivers/davinci/davinci_c64x.c -index 431ffdd..420b567 100644 --- a/gfxdrivers/davinci/davinci_c64x.c +++ b/gfxdrivers/davinci/davinci_c64x.c @@ -37,6 +37,8 @@ @@ -16,7 +14,7 @@ #include <sys/mman.h> #include <sys/types.h> +#include <sys/stat.h> -+ ++#include <sys/sysmacros.h> #include <unistd.h> #include <directfb_util.h>

