Version in base suite: 0.3-15.1 Base version: ascdc_0.3-15.1 Target version: ascdc_0.3-15.1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/a/ascdc/ascdc_0.3-15.1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/a/ascdc/ascdc_0.3-15.1+deb13u1.dsc changelog | 10 ++++++++++ patches/0002-Fix-missing-fcntl-include.patch | 25 +++++++++++++++++++++++++ patches/series | 1 + 3 files changed, 36 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp4954hr2p/ascdc_0.3-15.1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmp4954hr2p/ascdc_0.3-15.1+deb13u1.dsc: no acceptable signature found diff -Nru ascdc-0.3/debian/changelog ascdc-0.3/debian/changelog --- ascdc-0.3/debian/changelog 2023-10-02 21:00:14.000000000 +0000 +++ ascdc-0.3/debian/changelog 2026-09-15 18:45:00.000000000 +0000 @@ -1,3 +1,13 @@ +ascdc (0.3-15.1+deb13u1) trixie; urgency=medium + + * QA upload. + + [ Rony Joao de Sousa ] + * Fix FTBFS caused by missing open() function declaration. + Closes: #1136759. + + -- Santiago Vila Tue, 15 Sep 2026 20:45:00 +0200 + ascdc (0.3-15.1) unstable; urgency=medium * Non-maintainer upload diff -Nru ascdc-0.3/debian/patches/0002-Fix-missing-fcntl-include.patch ascdc-0.3/debian/patches/0002-Fix-missing-fcntl-include.patch --- ascdc-0.3/debian/patches/0002-Fix-missing-fcntl-include.patch 1970-01-01 00:00:00.000000000 +0000 +++ ascdc-0.3/debian/patches/0002-Fix-missing-fcntl-include.patch 2026-09-15 18:41:58.000000000 +0000 @@ -0,0 +1,25 @@ +From: Rony Joao de Sousa +Date: Tue, 2 Jun 2026 08:57:39 -0300 +Subject: Fix missing fcntl include +Description: Fix implicit declaration of open() + Include to provide the prototype for open(). + . + This fixes build failures with modern compilers where + implicit function declarations are treated as errors. +Forwarded: no +--- + ascdc.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/ascdc.c b/ascdc.c +index afec7a7..ebded5a 100644 +--- a/ascdc.c ++++ b/ascdc.c +@@ -17,6 +17,7 @@ + /*****************************************************************************/ + + #include ++#include + #include + #include + diff -Nru ascdc-0.3/debian/patches/series ascdc-0.3/debian/patches/series --- ascdc-0.3/debian/patches/series 2023-10-02 21:00:14.000000000 +0000 +++ ascdc-0.3/debian/patches/series 2026-09-15 18:41:58.000000000 +0000 @@ -1 +1,2 @@ debian.patch +0002-Fix-missing-fcntl-include.patch