Your message dated Sun, 26 Oct 2025 22:22:02 +0000
with message-id <[email protected]>
and subject line Bug#1097879: fixed in shntool 3.0.10+git20130108.4ca41f4-1.1
has caused the Debian Bug report #1097879,
regarding shntool: 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.)
--
1097879: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097879
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:shntool
Version: 3.0.10+git20130108.4ca41f4-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/shntool_3.0.10+git20130108.4ca41f4-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
[...]
make[2]: *** [Makefile:464: core_shntool.o] Error 1
make[2]: *** [Makefile:464: core_wave.o] Error 1
core_mode.c: In function ‘ascii_sort_files’:
core_mode.c:569:11: error: assignment to ‘int (*)(void)’ from incompatible
pointer type ‘int (*)(const wave_info **, const wave_info **)’ {aka ‘int
(*)(const struct _wave_info **, const struct _wave_info **)’}
[-Wincompatible-pointer-types]
569 | cmpfunc = compare_ascii;
| ^
core_mode.c:560:12: note: ‘compare_ascii’ declared here
560 | static int compare_ascii(const wave_info **w1,const wave_info **w2)
| ^~~~~~~~~~~~~
core_mode.c:570:48: error: passing argument 4 of ‘qsort’ from incompatible
pointer type [-Wincompatible-pointer-types]
570 | qsort(filenames,numfiles,sizeof(wave_info *),cmpfunc);
| ^~~~~~~
| |
| int (*)(void)
In file included from ../include/mode.h:26,
from ../include/shntool.h:31:
/usr/include/stdlib.h:971:34: note: expected ‘__compar_fn_t’ {aka ‘int
(*)(const void *, const void *)’} but argument is of type ‘int (*)(void)’
971 | __compar_fn_t __compar) __nonnull ((1, 4));
| ~~~~~~~~~~~~~~^~~~~~~~
/usr/include/stdlib.h:948:15: note: ‘__compar_fn_t’ declared here
948 | typedef int (*__compar_fn_t) (const void *, const void *);
| ^~~~~~~~~~~~~
core_mode.c: In function ‘version_sort_files’:
core_mode.c:577:11: error: assignment to ‘int (*)(void)’ from incompatible
pointer type ‘int (*)(const wave_info **, const wave_info **)’ {aka ‘int
(*)(const struct _wave_info **, const struct _wave_info **)’}
[-Wincompatible-pointer-types]
577 | cmpfunc = compare_version;
| ^
core_mode.c:555:12: note: ‘compare_version’ declared here
555 | static int compare_version(const wave_info **w1,const wave_info **w2)
| ^~~~~~~~~~~~~~~
core_mode.c:578:48: error: passing argument 4 of ‘qsort’ from incompatible
pointer type [-Wincompatible-pointer-types]
578 | qsort(filenames,numfiles,sizeof(wave_info *),cmpfunc);
| ^~~~~~~
| |
| int (*)(void)
/usr/include/stdlib.h:971:34: note: expected ‘__compar_fn_t’ {aka ‘int
(*)(const void *, const void *)’} but argument is of type ‘int (*)(void)’
971 | __compar_fn_t __compar) __nonnull ((1, 4));
| ~~~~~~~~~~~~~~^~~~~~~~
/usr/include/stdlib.h:948:15: note: ‘__compar_fn_t’ declared here
948 | typedef int (*__compar_fn_t) (const void *, const void *);
| ^~~~~~~~~~~~~
core_mode.c: At top level:
core_mode.c:679:6: error: conflicting types for ‘files_are_identical’; have
‘_Bool(char *, char *)’
679 | bool files_are_identical(char *file1,char *file2)
| ^~~~~~~~~~~~~~~~~~~
../include/mode.h:81:5: note: previous declaration of ‘files_are_identical’
with type ‘int(char *, char *)’
81 | int files_are_identical(char *,char *);
| ^~~~~~~~~~~~~~~~~~~
core_mode.c: In function ‘alter_file_order’:
core_mode.c:994:5: warning: ignoring return value of ‘fgets’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
994 | fgets(response,BUF_SIZE-1,stdin);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
core_mode.c: In function ‘input_get_filename’:
core_mode.c:1688:7: warning: ignoring return value of ‘fgets’ declared with
attribute ‘warn_unused_result’ [-Wunused-result]
1688 | fgets(internal_filename,FILENAME_SIZE-1,st_input.fd);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../include/format.h:27:
core_mode.c: At top level:
../include/module.h:33:36: warning: ‘cvsid’ defined but not used
[-Wunused-const-variable=]
33 | #define CVSID(x) static const char cvsid[] = x;
| ^~~~~
core_mode.c:31:1: note: in expansion of macro ‘CVSID’
31 | CVSID("$Id: core_mode.c,v 1.88 2009/03/30 05:55:33 jason Exp $")
| ^~~~~
make[2]: *** [Makefile:464: core_mode.o] Error 1
make[2]: Leaving directory
'/build/reproducible-path/shntool-3.0.10+git20130108.4ca41f4/src'
make[1]: *** [Makefile:386: all-recursive] Error 1
make[1]: Leaving directory
'/build/reproducible-path/shntool-3.0.10+git20130108.4ca41f4'
dh_auto_build: error: make -j8 returned exit code 2
make: *** [debian/rules:10: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--- End Message ---
--- Begin Message ---
Source: shntool
Source-Version: 3.0.10+git20130108.4ca41f4-1.1
Done: Adrian Bunk <[email protected]>
We believe that the bug you reported is fixed in the latest version of
shntool, 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.
Adrian Bunk <[email protected]> (supplier of updated shntool 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: Fri, 24 Oct 2025 20:06:52 +0300
Source: shntool
Architecture: source
Version: 3.0.10+git20130108.4ca41f4-1.1
Distribution: unstable
Urgency: medium
Maintainer: Dmitry Smirnov <[email protected]>
Changed-By: Adrian Bunk <[email protected]>
Closes: 1097879
Changes:
shntool (3.0.10+git20130108.4ca41f4-1.1) unstable; urgency=medium
.
* Non-maintainer upload.
* Build with -std=gnu17 to workaround FTBFS with GCC 15.
(Closes: #1097879)
Checksums-Sha1:
22bdad7e820d3a011358b2921cb3b83c23b3b425 1972
shntool_3.0.10+git20130108.4ca41f4-1.1.dsc
d037e8fa871a0bd51a654cdd4772a2e7a9692c8e 4872
shntool_3.0.10+git20130108.4ca41f4-1.1.debian.tar.xz
Checksums-Sha256:
2ce68dec2745b50297d5306cb57bd7dd5244084f0e06cba1d316176f580e2a7b 1972
shntool_3.0.10+git20130108.4ca41f4-1.1.dsc
0b64ba7f5e0b6a16888c21a4708dd7aeced317ecbb7083ee271f8031da1bdfc6 4872
shntool_3.0.10+git20130108.4ca41f4-1.1.debian.tar.xz
Files:
131f9a76c982df11743a136839a00857 1972 sound optional
shntool_3.0.10+git20130108.4ca41f4-1.1.dsc
f783ce11bf9a605c5a31f19e4740a0af 4872 sound optional
shntool_3.0.10+git20130108.4ca41f4-1.1.debian.tar.xz
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEOvp1f6xuoR0v9F3wiNJCh6LYmLEFAmj8BzUACgkQiNJCh6LY
mLEHlxAAkSHj2gAaZw74jzQibCuEjzuA5f6lYoZJfjvXJ1WNffjhQ6FvZWitOdgL
gBkKbveOj0LWM+aKJJ9HMIDOjX8gc510+i0uZTSt0M8EIlnhADh0cVR3xGfJQK5C
odiyx9apbcBsFWmBeprnOmGCnH/kFxuNaOW/MShYe3cLxtq53eR7PwyFOWWwyfQ1
bHRc5WNHGtCFbtHsQdS1hqiGITTj+a8HIkxecOgh8VTz0A524iBmqi68Md/f/sU8
0RVY3D7LrY2bQLmRXke7CfC9M0QiTcXcidoKusjF2vZ5RiO7PloTS3hf7LhX8Woo
X3dLI1c0XGny3/WpJ0kIkXL5BwS5K2ZD6LTyGreenGD4mYGoOPJYodzWG3sCk1P3
btQvix/5Ajl1Liw91Xg1rzJ1BCdKHBCDxCv+DndWvFgmQ20dFzI+AyN6DuutWrCD
nJYx1CBm5DSTdv7ykvxOhTNS9qGIaC/j1E7OcK08DxQpTcIL9/OrfmiCnA+/w+PM
ewyll6UWSxTnYG7nlrH6ygUSUdFDD5bcwLVArMn5toAoyxou6AEmpk5hp9f9Qu38
yJ5L9o/CWS64vWOHbIM2zVMbsiQds7KC/EaqFUwl9FFkfruKJD/cuCxjkGUQi9Xk
Agr+QH85NGQiLSUNFisAz0BG/hfI+YU8vL+FGfL+BKUsdx6XHfE=
=HL8R
-----END PGP SIGNATURE-----
pgppHo6qOYc65.pgp
Description: PGP signature
--- End Message ---