Your message dated Thu, 02 Oct 2025 15:35:23 +0000
with message-id <[email protected]>
and subject line Bug#1097975: fixed in tcpick 0.2.1-12
has caused the Debian Bug report #1097975,
regarding tcpick: ftbfs with GCC-15
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1097975: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097975
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:tcpick
Version: 0.2.1-11
Severity: important
Tags: sid forky
User: [email protected]
Usertags: ftbfs-gcc-15

[This bug is NOT targeted to the upcoming trixie release]

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-15/g++-15, but succeeds to build with gcc-14/g++-14. The
severity of this report will be raised before the forky release.

The full build log can be found at:
http://qa-logs.debian.net/2025/02/16/amd64exp/tcpick_0.2.1-11_unstable_gccexp.log.gz
The last lines of the build log are at the end of this report.

To build with GCC 15, either set CC=gcc-15 CXX=g++-15 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

GCC 15 now defaults to the C23/C++23 standards, exposing many FTBFS.
Other Common build failures are new warnings resulting in build failures
with -Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-15/porting_to.html

[...]
   66 | extern void exit_signal(int);
      |             ^~~~~~~~~~~
tcpick.c:112:33: error: passing argument 2 of ‘signal_setup’ from incompatible 
pointer type [-Wincompatible-pointer-types]
  112 |         signal_setup (SIGTERM,  exit_signal);
      |                                 ^~~~~~~~~~~
      |                                 |
      |                                 void (*)(int)
tcpick.c:68:35: note: expected ‘void (*)(void)’ but argument is of type ‘void 
(*)(int)’
   68 | void signal_setup(int sig, void (*handler)(  ))
      |                            ~~~~~~~^~~~~~~~~~~~
tcpick.c:66:13: note: ‘exit_signal’ declared here
   66 | extern void exit_signal(int);
      |             ^~~~~~~~~~~
tcpick.c:115:33: error: passing argument 2 of ‘signal_setup’ from incompatible 
pointer type [-Wincompatible-pointer-types]
  115 |         signal_setup (SIGQUIT,  exit_signal);
      |                                 ^~~~~~~~~~~
      |                                 |
      |                                 void (*)(int)
tcpick.c:68:35: note: expected ‘void (*)(void)’ but argument is of type ‘void 
(*)(int)’
   68 | void signal_setup(int sig, void (*handler)(  ))
      |                            ~~~~~~~^~~~~~~~~~~~
tcpick.c:66:13: note: ‘exit_signal’ declared here
   66 | extern void exit_signal(int);
      |             ^~~~~~~~~~~
tcpick.c:119:32: error: passing argument 2 of ‘signal_setup’ from incompatible 
pointer type [-Wincompatible-pointer-types]
  119 |         signal_setup (SIGHUP,  exit_signal);
      |                                ^~~~~~~~~~~
      |                                |
      |                                void (*)(int)
tcpick.c:68:35: note: expected ‘void (*)(void)’ but argument is of type ‘void 
(*)(int)’
   68 | void signal_setup(int sig, void (*handler)(  ))
      |                            ~~~~~~~^~~~~~~~~~~~
tcpick.c:66:13: note: ‘exit_signal’ declared here
   66 | extern void exit_signal(int);
      |             ^~~~~~~~~~~
tcpick.c:176:17: warning: ‘pcap_lookupdev’ is deprecated: use 
'pcap_findalldevs' and use the first device [-Wdeprecated-declarations]
  176 |                 dev = pcap_lookupdev( (char*) errbuf );
      |                 ^~~
In file included from tcpick.h:91:
/usr/include/pcap/pcap.h:444:18: note: declared here
  444 | PCAP_API char   *pcap_lookupdev(char *);
      |                  ^~~~~~~~~~~~~~
tcpick.c:264:31: error: passing argument 3 of ‘pcap_loop’ from incompatible 
pointer type [-Wincompatible-pointer-types]
  264 |         pcap_loop( descr, -1, got_packet, NULL );
      |                               ^~~~~~~~~~
      |                               |
      |                               void (*)(void)
/usr/include/pcap/pcap.h:614:42: note: expected ‘pcap_handler’ {aka ‘void 
(*)(unsigned char *, const struct pcap_pkthdr *, const unsigned char *)’} but 
argument is of type ‘void (*)(void)’
  614 | PCAP_API int    pcap_loop(pcap_t *, int, pcap_handler, u_char *);
      |                                          ^~~~~~~~~~~~
tcpick.c:65:13: note: ‘got_packet’ declared here
   65 | extern void got_packet();
      |             ^~~~~~~~~~
/usr/include/pcap/pcap.h:378:16: note: ‘pcap_handler’ declared here
  378 | typedef void (*pcap_handler)(u_char *, const struct pcap_pkthdr *,
      |                ^~~~~~~~~~~~
gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
-Werror=implicit-function-declaration 
-ffile-prefix-map=/build/reproducible-path/tcpick-0.2.1=. 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -c -o datalink.o datalink.c
tcpick.c:183:17: warning: ignoring return value of ‘setuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  183 |                 setuid(getuid());
      |                 ^~~~~~~~~~~~~~~~
make[3]: *** [Makefile:411: tcpick.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/build/reproducible-path/tcpick-0.2.1/src'
make[2]: *** [Makefile:281: all] Error 2
make[2]: Leaving directory '/build/reproducible-path/tcpick-0.2.1/src'
make[1]: *** [Makefile:426: all-recursive] Error 1
make[1]: Leaving directory '/build/reproducible-path/tcpick-0.2.1'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:4: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: tcpick
Source-Version: 0.2.1-12
Done: Matheus Polkorny <[email protected]>

We believe that the bug you reported is fixed in the latest version of
tcpick, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matheus Polkorny <[email protected]> (supplier of updated tcpick package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 01 Oct 2025 01:14:38 -0300
Source: tcpick
Architecture: source
Version: 0.2.1-12
Distribution: unstable
Urgency: medium
Maintainer: Debian Security Tools <[email protected]>
Changed-By: Matheus Polkorny <[email protected]>
Closes: 1097975
Changes:
 tcpick (0.2.1-12) unstable; urgency=medium
 .
   * Team upload.
   * d/p/fix-build-gcc-15.patch: New patch (Closes: #1097975)
Checksums-Sha1:
 40b5f0edaa5aaa5749ccbc05b3e309b0cab26982 2172 tcpick_0.2.1-12.dsc
 1040e795cd6a9eaf2db73919ea9e81bc58a847f2 13388 tcpick_0.2.1-12.debian.tar.xz
 26d6deb7d6cef4dfe211f7eb1f0ce0e1b63aeb76 5976 tcpick_0.2.1-12_amd64.buildinfo
Checksums-Sha256:
 16c68e27f33355e73ff0a759d81d08fd949fe5a17a15cfc6b204cdfd05c13928 2172 
tcpick_0.2.1-12.dsc
 e18764bff94b34c0519b4934361572f50ca258b570a3d3cd99390b953353dd13 13388 
tcpick_0.2.1-12.debian.tar.xz
 ae599f33fe130a7e14d766dfc0bd64223dbe370c5bc9f75d2857c627933a5830 5976 
tcpick_0.2.1-12_amd64.buildinfo
Files:
 a79cf0e6777c2b11e2f231944bc17076 2172 net optional tcpick_0.2.1-12.dsc
 f7c79b3515d85079bcdb58319feb46d1 13388 net optional 
tcpick_0.2.1-12.debian.tar.xz
 a004867467d00a587f9883013ad39641 5976 net optional 
tcpick_0.2.1-12_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJDBAEBCgAtFiEEPfXoqkP8n9/QhvGVrfUO2vit1YUFAmjelskPHHNnZUBkZWJp
YW4ub3JnAAoJEK31Dtr4rdWF4VQP/1joV1wLr/4XjM6RrrlOAsf9htJeBANLWEEC
TR5dIoNYpWcKeTI/iXlbOndvA6mY/vwkYI7u8Tc77idOZvtie7u0DkZQNRvZgV/j
1STmQq0TBYhLgniVq+eU2ydNyOruFGFbiKK7/CYOVQdL7iqhlYtpS6arj8tJOC3V
pUJYQaAnwU2GRAK2T+vDwSxcauAX+3qnTg8iKjLj7EPTuMdtks3gpDrU9mIgAHWP
td7k0JvNY5uQktiO6qITTTXX9ji7nxG5jXa1JwYAXInjiV9F41Zr9nt16q3cosqB
bfQxTVKUSJ99Nflz13CsPAn/kYQ1l0ZvgxoIDTVLdIVAAODeTYenvzAddZstFe0Y
uoAaHaq8TvvWAPp0fCG7MsuVHgMnhMhadTqbWdBTF4L9yuxPkh0cVnzKixu7wxDr
/ECRMvYOUIGuhC/U+tKPB9DJ0Tvx4zH8XBU7tKVwYt4FS5fGGfAMWt0J/zS1aHpV
adaggjWcQd1jYA9+xbi86PuqYhYuTkV8QXNaIPSpx05g5X99Jel/xq4U1q4+1Glo
0UdPrNnd//KtK0MsSw9RmEdsRO+qbk5f62km6xqZpc5X4mRGJSX3UCVt1QJZ0MXl
14kYtn9BkUgEONcRmNcCcRGNybWSle8L07snUQdLg/ME9Mtgyz+K4bxbikomfWSP
RTWalU2V
=YU0W
-----END PGP SIGNATURE-----

Attachment: pgp6D3ZJ7hgFq.pgp
Description: PGP signature


--- End Message ---

Reply via email to