Your message dated Sun, 07 Sep 2025 13:37:39 +0000
with message-id <[email protected]>
and subject line Bug#1097237: fixed in libnids 1.26-3
has caused the Debian Bug report #1097237,
regarding libnids: 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.)
--
1097237: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097237
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:libnids
Version: 1.26-2.1
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/libnids_1.26-2.1_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
[...]
13 | void (*item)();
| ^~~~
libnids.c: In function ‘process_udp’:
libnids.c:443:9: error: too many arguments to function ‘ipp->item’; expected 0,
have 4
443 | ipp->item(&addr, ((char *) udph) + sizeof(struct udphdr),
| ^~~ ~~~~~
util.h:13:10: note: declared here
13 | void (*item)();
| ^~~~
libnids.c: In function ‘init_procs’:
libnids.c:468:25: error: assignment to ‘void (*)(void)’ from incompatible
pointer type ‘void (*)(u_char *, int)’ {aka ‘void (*)(unsigned char *, int)’}
[-Wincompatible-pointer-types]
468 | ip_frag_procs->item = gen_ip_frag_proc;
| ^
libnids.c:363:13: note: ‘gen_ip_frag_proc’ declared here
363 | static void gen_ip_frag_proc(u_char * data, int len)
| ^~~~~~~~~~~~~~~~
libnids.c:471:20: error: assignment to ‘void (*)(void)’ from incompatible
pointer type ‘void (*)(u_char *, int)’ {aka ‘void (*)(unsigned char *, int)’}
[-Wincompatible-pointer-types]
471 | ip_procs->item = gen_ip_proc;
| ^
libnids.c:448:13: note: ‘gen_ip_proc’ declared here
448 | static void gen_ip_proc(u_char * data, int skblen)
| ^~~~~~~~~~~
libnids.c: In function ‘open_live’:
libnids.c:513:9: warning: ‘pcap_lookupdev’ is deprecated: use
'pcap_findalldevs' and use the first device [-Wdeprecated-declarations]
513 | nids_params.device = pcap_lookupdev(nids_errbuf);
| ^~~~~~~~~~~
In file included from libnids.c:18:
/usr/include/pcap/pcap.h:444:18: note: declared here
444 | PCAP_API char *pcap_lookupdev(char *);
| ^~~~~~~~~~~~~~
libnids.c: In function ‘nids_init’:
libnids.c:663:28: warning: comparison of distinct pointer types lacks a cast
[-Wcompare-distinct-pointer-types]
663 | if (nids_params.syslog == nids_syslog)
| ^~
libnids.c:673:10: warning: ‘g_thread_init’ is deprecated
[-Wdeprecated-declarations]
673 | g_thread_init(NULL);
| ^~~~~~~~~~~~~
In file included from /usr/include/glib-2.0/glib.h:115,
from libnids.c:32:
/usr/include/glib-2.0/glib/deprecated/gthread.h:271:10: note: declared here
271 | void g_thread_init (gpointer vtable);
| ^~~~~~~~~~~~~
libnids.c: In function ‘nids_run’:
libnids.c:690:5: warning: ‘g_thread_create_full’ is deprecated: Use
'g_thread_new' instead [-Wdeprecated-declarations]
690 | START_CAP_QUEUE_PROCESS_THREAD(); /* threading... */
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/glib-2.0/glib/deprecated/gthread.h:108:10: note: declared here
108 | GThread *g_thread_create_full (GThreadFunc func,
| ^~~~~~~~~~~~~~~~~~~~
libnids.c: In function ‘nids_next’:
libnids.c:750:5: warning: ‘g_thread_create_full’ is deprecated: Use
'g_thread_new' instead [-Wdeprecated-declarations]
750 | START_CAP_QUEUE_PROCESS_THREAD();
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/glib-2.0/glib/deprecated/gthread.h:108:10: note: declared here
108 | GThread *g_thread_create_full (GThreadFunc func,
| ^~~~~~~~~~~~~~~~~~~~
libnids.c: In function ‘nids_dispatch’:
libnids.c:764:5: warning: ‘g_thread_create_full’ is deprecated: Use
'g_thread_new' instead [-Wdeprecated-declarations]
764 | START_CAP_QUEUE_PROCESS_THREAD(); /* threading... */
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/glib-2.0/glib/deprecated/gthread.h:108:10: note: declared here
108 | GThread *g_thread_create_full (GThreadFunc func,
| ^~~~~~~~~~~~~~~~~~~~
make[2]: *** [Makefile:38: libnids.o] Error 1
make[2]: Leaving directory '/build/reproducible-path/libnids-1.26/src'
make[1]: *** [Makefile:10: static] Error 2
make[1]: Leaving directory '/build/reproducible-path/libnids-1.26'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:7: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: libnids
Source-Version: 1.26-3
Done: Sven Geuer <[email protected]>
We believe that the bug you reported is fixed in the latest version of
libnids, 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.
Sven Geuer <[email protected]> (supplier of updated libnids 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: Sun, 07 Sep 2025 15:09:11 +0200
Source: libnids
Architecture: source
Version: 1.26-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Security Tools <[email protected]>
Changed-By: Sven Geuer <[email protected]>
Closes: 1097237
Changes:
libnids (1.26-3) unstable; urgency=medium
.
* Team upload.
* d/rules: Instruct the compiler to apply C dialect gnu17 (Closes: #1097237).
Checksums-Sha1:
46744bdafa65ab34997563577fd985b9edc88f4d 2058 libnids_1.26-3.dsc
61bb3e77acfa0557c92fc91c38f26a983bbd01d4 8284 libnids_1.26-3.debian.tar.xz
72bd6881bae959d91b98364ed1a0b088799ffd68 7770 libnids_1.26-3_amd64.buildinfo
Checksums-Sha256:
0ea3427e5a646e86fcc738033802b30a7beac2fad7e209df67fbc43a55efb4fb 2058
libnids_1.26-3.dsc
2c03c29dc676eca2c49c0519dc8622ad71c0fdea6deeb37e88243dbb54090223 8284
libnids_1.26-3.debian.tar.xz
2bc7347344f88ff60105930a881ba44a68f1fbe93f4729502dba6425c682b5b2 7770
libnids_1.26-3_amd64.buildinfo
Files:
2cbd871b4979e562ed84367f2350d733 2058 libs optional libnids_1.26-3.dsc
c02203b0b4543af7883ae9701e663020 8284 libs optional
libnids_1.26-3.debian.tar.xz
ada0e45c7060ab9a0482e31f74769f13 7770 libs optional
libnids_1.26-3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQJDBAEBCgAtFiEEPfXoqkP8n9/QhvGVrfUO2vit1YUFAmi9hYcPHHNnZUBkZWJp
YW4ub3JnAAoJEK31Dtr4rdWF9csP/1jGm0tUYJo6a3WpqbB3uTBwy0R8MwO1wvaJ
LQ+WWFTNvIwGY8mjEkQUC9fsiZq2ub+ls/SxWUmuKyjMuMO2SKCMZQupagpkUhhZ
3yHrfoVgC5ndlWrhDtgO/SdO9wB4BQtsAJ5iOPs8VeVx6njI5cFc/w0TO7wRiIwT
WkVrnnJUyIs9nvm85Jk4FmFrNFUfHPy3c2l+F87n3dAX+XkbvaNzTjteAjtxQBpD
CtgB4pKSqaD7gS20XhK5PEXwU4upqkc+D3BZ9BBZ3CwdR19QA2BCklZa44nYFeRu
u44Bwlr+aWHDL8Sp3B8MU87xo/fA0LM6rvjNQtFJVFpuV90/4EiYgoMdFc2JKyri
of2Qp6OJeuBvw7sauB+3XlddHRZ63vyeYTm4fsqOJ6VMkgxcp106wSYfiAFBSayy
m0scDiUwI2n3HFyc+7o7bptaA3W3nGO3hHka1Xigu8xg4cK3jfNO/nn5F81LsJmd
24ocs8aHtKYU3GB2JnxQLE1/u9bUbQ/H46M+M7QmqYtZeCjbfCP/0GBKn5AMtzkE
SUSiu0T0kDKG3pKyiVh2nB9xXoZUT+HaanyDsnh4gt/8GQ5RHNDWfBhlPrLu2L/w
syE+dEeomvKMgMqgA8rzM/SP1UiwL5T65M9TDWezZhUg4OCl5GtzGjmRIhz8GMs/
ALMiA434
=huqy
-----END PGP SIGNATURE-----
pgpUrlzSeeeIh.pgp
Description: PGP signature
--- End Message ---