Your message dated Wed, 17 Sep 2025 20:52:18 +0000
with message-id <[email protected]>
and subject line Bug#1097685: fixed in qad 0.0~git20240206.43adc42+dfsg-1
has caused the Debian Bug report #1097685,
regarding qad: 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.)


-- 
1097685: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097685
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:qad
Version: 0.0~git20230808.ae0c099+dfsg-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/qad_0.0~git20230808.ae0c099+dfsg-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

[...]
../src/backends/input/uinput.h:45:5: note: ‘uinput_button’ declared here
   45 | int uinput_button(int value, int event);
      |     ^~~~~~~~~~~~~
../src/backends/input/uinput.c:40:18: error: assignment to ‘int (*)(void)’ from 
incompatible pointer type ‘int (*)(int,  int,  int,  int)’ 
[-Wincompatible-pointer-types]
   40 |   backend->touch = uinput_touch;
      |                  ^
../src/backends/input/uinput.h:47:5: note: ‘uinput_touch’ declared here
   47 | int uinput_touch(int x, int y, int duration, int event);
      |     ^~~~~~~~~~~~
../src/backends/input/uinput.c:41:18: error: assignment to ‘int (*)(void)’ from 
incompatible pointer type ‘int (*)(int,  int,  int,  int,  int,  int)’ 
[-Wincompatible-pointer-types]
   41 |   backend->swipe = uinput_swipe;
      |                  ^
../src/backends/input/uinput.h:49:5: note: ‘uinput_swipe’ declared here
   49 | int uinput_swipe(int x, int y, int x_2, int y_2, int velocity, int 
event);
      |     ^~~~~~~~~~~~
[3/6] cc -Iqad.p -I. -I.. -I../include -I/usr/include/cjson 
-I/usr/include/p11-kit-1 -I/usr/include/libdrm -I/usr/include/libpng16 
-fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
-Werror=implicit-function-declaration 
'-ffile-prefix-map=/build/reproducible-path/qad-0.0~git20230808.ae0c099+dfsg=.' 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O2 
-Wall -Werror -MD -MQ qad.p/src_server.c.o -MF qad.p/src_server.c.o.d -o 
qad.p/src_server.c.o -c ../src/server.c
FAILED: qad.p/src_server.c.o 
cc -Iqad.p -I. -I.. -I../include -I/usr/include/cjson -I/usr/include/p11-kit-1 
-I/usr/include/libdrm -I/usr/include/libpng16 -fdiagnostics-color=always 
-D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
-Werror=implicit-function-declaration 
'-ffile-prefix-map=/build/reproducible-path/qad-0.0~git20230808.ae0c099+dfsg=.' 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O2 
-Wall -Werror -MD -MQ qad.p/src_server.c.o -MF qad.p/src_server.c.o.d -o 
qad.p/src_server.c.o -c ../src/server.c
../src/server.c: In function ‘qad_move’:
../src/server.c:108:7: error: too many arguments to function 
‘backend->input_backend->move’; expected 0, have 3
  108 |   if (backend->input_backend->move(x, y, event) < 0) {
      |       ^~~~~~~                      ~
In file included from ../src/server.c:37:
../include/backend.h:44:9: note: declared here
   44 |   int (*move)();
      |         ^~~~
../src/server.c: In function ‘qad_button’:
../src/server.c:134:7: error: too many arguments to function 
‘backend->input_backend->button’; expected 0, have 2
  134 |   if (backend->input_backend->button(value, event) < 0) {
      |       ^~~~~~~                        ~~~~~
../include/backend.h:45:9: note: declared here
   45 |   int (*button)();
      |         ^~~~~~
../src/server.c: In function ‘qad_touch’:
../src/server.c:166:7: error: too many arguments to function 
‘backend->input_backend->touch’; expected 0, have 4
  166 |   if (backend->input_backend->touch(x, y, duration, event) < 0) {
      |       ^~~~~~~                       ~
../include/backend.h:46:9: note: declared here
   46 |   int (*touch)();
      |         ^~~~~
../src/server.c: In function ‘qad_swipe’:
../src/server.c:201:7: error: too many arguments to function 
‘backend->input_backend->swipe’; expected 0, have 6
  201 |   if (backend->input_backend->swipe(x, y, x2, y2, velocity, event) < 0) 
{
      |       ^~~~~~~                       ~
../include/backend.h:47:9: note: declared here
   47 |   int (*swipe)();
      |         ^~~~~
../src/server.c: In function ‘init_backends’:
../src/server.c:383:28: error: too many arguments to function 
‘create_input_backend’; expected 0, have 1
  383 |   backend->input_backend = create_input_backend(input_type);
      |                            ^~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~
In file included from ../src/server.c:39:
../src/backends/input/input_common.h:31:22: note: declared here
   31 | qad_backend_input_t *create_input_backend();
      |                      ^~~~~~~~~~~~~~~~~~~~
[4/6] cc -Iqad.p -I. -I.. -I../include -I/usr/include/cjson 
-I/usr/include/p11-kit-1 -I/usr/include/libdrm -I/usr/include/libpng16 
-fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
-Werror=implicit-function-declaration 
'-ffile-prefix-map=/build/reproducible-path/qad-0.0~git20230808.ae0c099+dfsg=.' 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O2 
-Wall -Werror -MD -MQ qad.p/src_backends_input_input_common.c.o -MF 
qad.p/src_backends_input_input_common.c.o.d -o 
qad.p/src_backends_input_input_common.c.o -c 
../src/backends/input/input_common.c
FAILED: qad.p/src_backends_input_input_common.c.o 
cc -Iqad.p -I. -I.. -I../include -I/usr/include/cjson -I/usr/include/p11-kit-1 
-I/usr/include/libdrm -I/usr/include/libpng16 -fdiagnostics-color=always 
-D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
-Werror=implicit-function-declaration 
'-ffile-prefix-map=/build/reproducible-path/qad-0.0~git20230808.ae0c099+dfsg=.' 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O2 
-Wall -Werror -MD -MQ qad.p/src_backends_input_input_common.c.o -MF 
qad.p/src_backends_input_input_common.c.o.d -o 
qad.p/src_backends_input_input_common.c.o -c 
../src/backends/input/input_common.c
../src/backends/input/input_common.c:35:22: error: conflicting types for 
‘create_input_backend’; have ‘qad_backend_input_t *(char *)’ {aka ‘struct 
qad_backend_input_s *(char *)’}
   35 | qad_backend_input_t *create_input_backend(char input_type[]) {
      |                      ^~~~~~~~~~~~~~~~~~~~
In file included from ../src/backends/input/input_common.c:26:
../src/backends/input/input_common.h:31:22: note: previous declaration of 
‘create_input_backend’ with type ‘qad_backend_input_t *(void)’ {aka ‘struct 
qad_backend_input_s *(void)’}
   31 | qad_backend_input_t *create_input_backend();
      |                      ^~~~~~~~~~~~~~~~~~~~
[5/6] cc -Iqad.p -I. -I.. -I../include -I/usr/include/cjson 
-I/usr/include/p11-kit-1 -I/usr/include/libdrm -I/usr/include/libpng16 
-fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
-Werror=implicit-function-declaration 
'-ffile-prefix-map=/build/reproducible-path/qad-0.0~git20230808.ae0c099+dfsg=.' 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -O2 
-Wall -Werror -MD -MQ qad.p/src_backends_screen_kms.c.o -MF 
qad.p/src_backends_screen_kms.c.o.d -o qad.p/src_backends_screen_kms.c.o -c 
../src/backends/screen/kms.c
ninja: build stopped: subcommand failed.
dh_auto_build: error: cd build-dir && LC_ALL=C.UTF-8 ninja -j8 -v returned exit 
code 1
make: *** [debian/rules:4: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: qad
Source-Version: 0.0~git20240206.43adc42+dfsg-1
Done: Sudip Mukherjee <[email protected]>

We believe that the bug you reported is fixed in the latest version of
qad, 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.
Sudip Mukherjee <[email protected]> (supplier of updated qad 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, 17 Sep 2025 21:07:41 +0100
Source: qad
Architecture: source
Version: 0.0~git20240206.43adc42+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Sudip Mukherjee <[email protected]>
Changed-By: Sudip Mukherjee <[email protected]>
Closes: 1097685
Changes:
 qad (0.0~git20240206.43adc42+dfsg-1) unstable; urgency=medium
 .
   * New upstream version 0.0~git20240206.43adc42+dfsg
     - New upstream version fixes gcc-15 FTBFS. (Closes: #1097685)
     - Do not use static.
     - Do not build static binary.
   * Use pkgconf instead of pkg-config.
   * Update Standards-Version to 4.7.2
   * Remove old fsf address from d/copyright.
Checksums-Sha1:
 482b5d3c26b12c938c41dfdb42e3d2a4fc67a721 2014 
qad_0.0~git20240206.43adc42+dfsg-1.dsc
 ea7b84e042f5ec91118af3baaf450e8e1ff956f7 23904 
qad_0.0~git20240206.43adc42+dfsg.orig.tar.xz
 766f420f8d93ca14163b9f4772ac11a231248199 3128 
qad_0.0~git20240206.43adc42+dfsg-1.debian.tar.xz
 1ce19d05e17804b30eef43e21fbbf4a87e3d31d0 8168 
qad_0.0~git20240206.43adc42+dfsg-1_amd64.buildinfo
Checksums-Sha256:
 72d6544c5837b4ca9c72db50ceb27ff96ee59a582ffb12e0f30e0df7414480d3 2014 
qad_0.0~git20240206.43adc42+dfsg-1.dsc
 9fa3cfaf6a56825e445cceb515e028f11bb1e373689a7772648803a690c4e827 23904 
qad_0.0~git20240206.43adc42+dfsg.orig.tar.xz
 84552d0b2283b18f5c626c15d43e52edd9df39b429d4a71ec53ebc7182525f50 3128 
qad_0.0~git20240206.43adc42+dfsg-1.debian.tar.xz
 243ca321da48691928e7b141c8f6a9e001c4774b553c9d1a48cd584573cbc4ab 8168 
qad_0.0~git20240206.43adc42+dfsg-1_amd64.buildinfo
Files:
 f1b54ac2e38a1e1b09148312d9725cb7 2014 utils optional 
qad_0.0~git20240206.43adc42+dfsg-1.dsc
 8793468e276b2138471e646ff0aa429c 23904 utils optional 
qad_0.0~git20240206.43adc42+dfsg.orig.tar.xz
 d204f5d473f64a50adc1b131896e141e 3128 utils optional 
qad_0.0~git20240206.43adc42+dfsg-1.debian.tar.xz
 5e06f475f6623b5347e249c053916c1f 8168 utils optional 
qad_0.0~git20240206.43adc42+dfsg-1_amd64.buildinfo

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

iQIzBAEBCgAdFiEEuDQJkCg9jZvBlJrHR5mjUUbRKzUFAmjLF6IACgkQR5mjUUbR
KzU6Jg//dNGXCwcKgkmQ6tJygW2bgY3qIY7nV9UolR+LK3S7KIrA56c44WTW+zjH
cd89i1vodbJ8LIMQhiQsEHiUj3XLZLzM9eFJYFhWteGybAmiEJEN9linMunivjxR
oZ+qtbJ0NcRyGQkv9emmTM2PusveHvf1iHP2Dc8XLD9hSQehJ3IGUFIung8Eu4LQ
P09CoSumgd6cTu/O7ci5inNsaEPvo2VPCKl5YKLqNfdQfQKGKm/NAZqtqyyU+adM
Kr/IHFYPxuxiHgedw6cSeeTzd2B8nUH4sofuPuiGp35JBM0a7/TeNR0CuOgNLy6G
bqTU8D2fFA6ocDuXmZWQduJm1pepsSCgx5oHy54/+SP0GgnjpampGNh5CgIUtI2f
9qISFhDpuKmx5Kt+BwX3GlWcZBpHJQ8XdtGUPy9vEm1z9mkLLc7Kco+vjhCUG8jo
Ug67pEpeHW90nyg3LPfMDUhT6zq2kYY9EkFdD64rjV6LlOShQ7uE0EGeo9S63UnY
ursN402iYCJyU5n/hPINXuKGQssHbo6zPfaZjUA+Zu05xCyWd1Dzt8FuumOM9Yyu
NF7mi42wn/wvXw1xIMWjyVICRNteHIwf0G7tTlh/gmak5PD+bZMyaNSHFwT2+4Qs
ANBbK6uEJvRXtiq8WB1GSi0YNgqWubZF+8sSRZbR+UJx2oW7Wl8=
=ShkL
-----END PGP SIGNATURE-----

Attachment: pgpzaVwC83SE4.pgp
Description: PGP signature


--- End Message ---

Reply via email to