Bug#1066535: nield: FTBFS: ifimsg_vxlan.c:33:12: error: implicit declaration of function ‘parse_ifla_vxlan_id’; did you mean ‘parse_ifla_vlan_id’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: nield
Version: 0.6.1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o ifimsg_vxlan.o ifimsg_vxlan.c
> ifimsg_vxlan.c: In function ‘parse_ifla_vxlan’:
> ifimsg_vxlan.c:33:12: error: implicit declaration of function 
> ‘parse_ifla_vxlan_id’; did you mean ‘parse_ifla_vlan_id’? 
> [-Werror=implicit-function-declaration]
>33 | if(parse_ifla_vxlan_id(msg, mp, vxlan[IFLA_VXLAN_ID], ifle))
>   |^~~
>   |parse_ifla_vlan_id
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:531: ifimsg_vxlan.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/nield_0.6.1-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066533: libpcl1: FTBFS: cobench.c:125:44: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libpcl1
Version: 1.12-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I.. -I./../include  -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o cothread.o cothread.c
> cobench.c: In function ‘run_test’:
> cobench.c:62:28: warning: format ‘%p’ expects argument of type ‘void *’, but 
> argument 3 has type ‘pthread_t’ {aka ‘long unsigned int’} [-Wformat=]
>62 | fprintf(stdout, "[%p] measuring co_create+co_delete 
> performance ...\n",
>   |   ~^
>   ||
>   |void *
>   |   %ld
>63 | pthread_self());
>   | ~~
>   | |
>   | pthread_t {aka long unsigned int}
> cobench.c:78:28: warning: format ‘%p’ expects argument of type ‘void *’, but 
> argument 3 has type ‘pthread_t’ {aka ‘long unsigned int’} [-Wformat=]
>78 | fprintf(stdout, "[%p] %g usec\n", pthread_self(),
>   |   ~^  ~~
>   ||  |
>   |void * pthread_t {aka long 
> unsigned int}
>   |   %ld
> cobench.c:83:36: warning: format ‘%p’ expects argument of type ‘void *’, but 
> argument 3 has type ‘pthread_t’ {aka ‘long unsigned int’} [-Wformat=]
>83 | fprintf(stdout, "[%p] measuring switch performance 
> ...\n",
>   |   ~^
>   ||
>   |void *
>   |   %ld
>84 | pthread_self());
>   | ~~
>   | |
>   | pthread_t {aka long unsigned int}
> cobench.c:96:36: warning: format ‘%p’ expects argument of type ‘void *’, but 
> argument 3 has type ‘pthread_t’ {aka ‘long unsigned int’} [-Wformat=]
>96 | fprintf(stdout, "[%p] %g usec\n", pthread_self(),
>   |   ~^  ~~
>   ||  |
>   |void * pthread_t {aka long 
> unsigned int}
>   |   %ld
> cobench.c: In function ‘main’:
> cobench.c:125:44: error: implicit declaration of function ‘atoi’ 
> [-Werror=implicit-function-declaration]
>   125 | nthreads = atoi(argv[i]);
>   |^~~~
> cobench.c:131:39: error: implicit declaration of function ‘malloc’ 
> [-Werror=implicit-function-declaration]
>   131 | thids = (pthread_t *) malloc(nthreads * 
> sizeof(pthread_t));
>   |   ^~
> cobench.c:30:1: note: include ‘’ or provide a declaration of 
> ‘malloc’
>29 | #include 
>   +++ |+#include 
>30 | 
> cobench.c:131:39: warning: incompatible implicit declaration of built-in 
> function ‘malloc’ [-Wbuiltin-declaration-mismatch]
>   131 | thids = (pthread_t *) malloc(nthreads * 
> sizeof(pthread_t));
>   |   ^~
> cobench.c:131:39: note: include ‘’ or provide a declaration of 
> ‘malloc’
> cothread.c: In function ‘main’:
> cothread.c:353:44: error: implicit declaration of function ‘atoi’ 
> [-Werror=implicit-function-declaration]
>   353 | nthreads = atoi(argv[i]);
>   |^~~~
> cothread.c:359:39: error: implicit declaration of function ‘malloc’ 
> [-Werror=implicit-function-declaration]
>   359 | thids = (pthread_t *) malloc(nthreads * 
> sizeof(pthread_t));
>   |   ^~
> cothread.c:9:1: note: include ‘’ or provide a declaration of 
> ‘malloc’
> 8 | #include 
>   +++ |+#include 
> 9 | 
>

Bug#1066528: dino-im: FTBFS: encrypt.vala:60:3: error: implicit declaration of function ‘xmpp_xep_omemo_encrypt_state_set_encrypted’; did you mean ‘xmpp_xep_omemo_encrypt_state_get_encrypted’? [-Werro

2024-03-13 Thread Lucas Nussbaum
Source: dino-im
Version: 0.4.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /usr/bin/cc -DGETTEXT_PACKAGE=\"dino-omemo\" -DG_LOG_DOMAIN=\"OMEMO\" 
> -DLOCALE_INSTALL_DIR=\"/usr/share/locale\" -Domemo_EXPORTS 
> -I/<>/obj-x86_64-linux-gnu/plugins/omemo 
> -I/<>/obj-x86_64-linux-gnu/exports -isystem 
> /usr/include/gdk-pixbuf-2.0 -isystem /usr/include/glib-2.0 -isystem 
> /usr/lib/x86_64-linux-gnu/glib-2.0/include -isystem /usr/include/libpng16 
> -isystem /usr/include/webp -isystem /usr/include/libmount -isystem 
> /usr/include/blkid -isystem /usr/include/gee-0.8 -isystem 
> /usr/include/gtk-4.0 -isystem /usr/include/pango-1.0 -isystem 
> /usr/include/harfbuzz -isystem /usr/include/freetype2 -isystem 
> /usr/include/fribidi -isystem /usr/include/cairo -isystem 
> /usr/include/pixman-1 -isystem /usr/include/graphene-1.0 -isystem 
> /usr/lib/x86_64-linux-gnu/graphene-1.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -fdiagnostics-color -Wall -Wextra -Werror=format-security 
> -Wno-duplicate-decl-specifier -fno-omit-frame-pointer -g -fPIC
> -Wno-unused-but-set-variable -Wno-unused-function -Wno-unused-label 
> -Wno-unused-parameter -Wno-unused-value -Wno-unused-variable 
> -Wno-discarded-qualifiers -Wno-discarded-array-qualifiers 
> -Wno-incompatible-pointer-types-discards-qualifiers 
> -Wno-deprecated-declarations -Wno-missing-braces -pthread -mfpmath=sse -msse 
> -msse2 -MD -MT plugins/omemo/CMakeFiles/omemo.dir/src/logic/encrypt.c.o -MF 
> plugins/omemo/CMakeFiles/omemo.dir/src/logic/encrypt.c.o.d -o 
> plugins/omemo/CMakeFiles/omemo.dir/src/logic/encrypt.c.o -c 
> /<>/obj-x86_64-linux-gnu/plugins/omemo/src/logic/encrypt.c
> /<>/plugins/omemo/src/logic/encrypt.vala: In function 
> ‘dino_plugins_omemo_omemo_encryptor_encrypt’:
> /<>/plugins/omemo/src/logic/encrypt.vala:60:3: error: implicit 
> declaration of function ‘xmpp_xep_omemo_encrypt_state_set_encrypted’; did you 
> mean ‘xmpp_xep_omemo_encrypt_state_get_encrypted’? 
> [-Werror=implicit-function-declaration]
>60 | status.encrypted = true;
>   |   ^ 
>   |   xmpp_xep_omemo_encrypt_state_get_encrypted
> /<>/plugins/omemo/src/logic/encrypt.vala: In function 
> ‘dino_plugins_omemo_omemo_encryptor_encrypt_key_to_recipients’:
> /<>/plugins/omemo/src/logic/encrypt.vala:74:2: error: implicit 
> declaration of function ‘xmpp_xep_omemo_encrypt_state_set_own_list’; did you 
> mean ‘xmpp_xep_omemo_encrypt_state_get_own_list’? 
> [-Werror=implicit-function-declaration]
>74 | status.own_list = true;
>   |  ^  ~~~   
>   |  xmpp_xep_omemo_encrypt_state_get_own_list
> /<>/plugins/omemo/src/logic/encrypt.vala:75:2: error: implicit 
> declaration of function ‘xmpp_xep_omemo_encrypt_state_set_own_devices’; did 
> you mean ‘xmpp_xep_omemo_encrypt_state_get_own_devices’? 
> [-Werror=implicit-function-declaration]
>75 | status.own_devices = 
> trust_manager.get_trusted_devices(account, self_jid).size;
>   |  ^  ~
>   |  xmpp_xep_omemo_encrypt_state_get_own_devices
> /<>/plugins/omemo/src/logic/encrypt.vala:76:2: error: implicit 
> declaration of function 
> ‘xmpp_xep_omemo_encrypt_state_set_other_waiting_lists’; did you mean 
> ‘xmpp_xep_omemo_encrypt_state_get_other_waiting_lists’? 
> [-Werror=implicit-function-declaration]
>76 | status.other_waiting_lists = 0;
>   |  ^  ~~~  
>   |  xmpp_xep_omemo_encrypt_state_get_other_waiting_lists
> /<>/plugins/omemo/src/logic/encrypt.vala:77:2: error: implicit 
> declaration of function ‘xmpp_xep_omemo_encrypt_state_set_other_devices’; did 
> you mean ‘xmpp_xep_omemo_encrypt_state_get_other_devices’? 
> [-Werror=implicit-function-declaration]
>77 | status.other_devices = 0;
>   |  ^  ~  
>   |  xmpp_xep_omemo_encrypt_state_get_other_devices
> /<>/plugins/omemo/src/logic/encrypt.vala: In function 
&

Bug#1066532: microbiomeutil: FTBFS: NAST-iEr.c:106:15: error: implicit declaration of function ‘isprint’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: microbiomeutil
Version: 20101212+dfsg1-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wl,-z,relro -Wl,-z,now NAST-iEr.c -o 
> NAST-iEr
> NAST-iEr.c: In function ‘main’:
> NAST-iEr.c:106:15: error: implicit declaration of function ‘isprint’ 
> [-Werror=implicit-function-declaration]
>   106 |   if (isprint (optopt)) {
>   |   ^~~
> NAST-iEr.c:5:1: note: include ‘’ or provide a declaration of 
> ‘isprint’
> 4 | #include 
>   +++ |+#include 
> 5 | 
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:6: NAST-iEr] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/microbiomeutil_20101212+dfsg1-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066531: policykit-1: FTBFS: ../subprojects/mocklibc-1.0/src/netgroup-debug.c:25:3: error: implicit declaration of function ‘print_indent’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: policykit-1
Version: 124-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -Isubprojects/mocklibc-1.0/src/mocklibc-debug-netgroup.p 
> -Isubprojects/mocklibc-1.0/src -I../subprojects/mocklibc-1.0/src 
> -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -MD 
> -MQ subprojects/mocklibc-1.0/src/mocklibc-debug-netgroup.p/netgroup-debug.c.o 
> -MF 
> subprojects/mocklibc-1.0/src/mocklibc-debug-netgroup.p/netgroup-debug.c.o.d 
> -o subprojects/mocklibc-1.0/src/mocklibc-debug-netgroup.p/netgroup-debug.c.o 
> -c ../subprojects/mocklibc-1.0/src/netgroup-debug.c
> ../subprojects/mocklibc-1.0/src/netgroup-debug.c: In function 
> ‘netgroup_debug_print_entry’:
> ../subprojects/mocklibc-1.0/src/netgroup-debug.c:25:3: error: implicit 
> declaration of function ‘print_indent’ [-Werror=implicit-function-declaration]
>25 |   print_indent(stream, indent);
>   |   ^~~~
> cc1: some warnings being treated as errors
> [90/108] cc  -o src/programs/pkexec src/programs/pkexec.p/pkexec.c.o 
> -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> '-Wl,-rpath,$ORIGIN/../polkitagent:$ORIGIN/../polkit' 
> -Wl,-rpath-link,/<>/obj-x86_64-linux-gnu/src/polkitagent 
> -Wl,-rpath-link,/<>/obj-x86_64-linux-gnu/src/polkit 
> -Wl,--start-group src/polkitagent/libpolkit-agent-1.so.0.0.0 
> src/polkit/libpolkit-gobject-1.so.0.0.0 -lpam 
> /usr/lib/x86_64-linux-gnu/libgio-2.0.so 
> /usr/lib/x86_64-linux-gnu/libgobject-2.0.so 
> /usr/lib/x86_64-linux-gnu/libglib-2.0.so -Wl,--end-group
> [91/108] cc -Isubprojects/mocklibc-1.0/src/libmocklibc.so.0.0.0.p 
> -Isubprojects/mocklibc-1.0/src -I../subprojects/mocklibc-1.0/src 
> -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
> -MD -MQ subprojects/mocklibc-1.0/src/libmocklibc.so.0.0.0.p/netgroup.c.o -MF 
> subprojects/mocklibc-1.0/src/libmocklibc.so.0.0.0.p/netgroup.c.o.d -o 
> subprojects/mocklibc-1.0/src/libmocklibc.so.0.0.0.p/netgroup.c.o -c 
> ../subprojects/mocklibc-1.0/src/netgroup.c
> [92/108] cc -Itest/polkit/polkitunixgrouptest.p -Itest/polkit 
> -I../test/polkit -Isrc -I../src -Isrc/polkit -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/gio-unix-2.0 -fdiagnostics-color=always 
> -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -std=c99 -DHAVE_CONFIG_H -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -pthread -D_POLKIT_COMPILATION -D_POLKIT_BACKEND_COMPILATION -MD -MQ 
> test/polkit/polkitunixgrouptest.p/polkitunixgrouptest.c.o -MF 
> test/polkit/polkitunixgrouptest.p/polkitunixgrouptest.c.o.d -o 
> test/polkit/polkitunixgrouptest.p/polkitunixgrouptest.c.o -c 
> ../test/polkit/polkitunixgrouptest.c
> [93/108] cc -Itest/polkit/polkitunixusertest.p -Itest/polkit -I../test/polkit 
> -Isrc -I../src -Isrc/polkit -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/gio-unix-2.0 -fdiagnostics-color=always 
> -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -std=c99 -DHAVE_CONFIG_H -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -pthread -D_POLKIT_COMPILATION -D_POLKIT_BACKEND_COMPILATION -MD -MQ 
> test/polkit/polkitunixusertest.p/polkitunixusertest.c.o -MF 
> test/polkit/polkitunixusertest.p/polkitunixusertest.c.o.d -o 
> test/polkit/polkitunixusertest.p/polkitunixu

Bug#1066530: pd-tclpd: FTBFS: tcl_class.c:108:9: error: implicit declaration of function ‘error’; did you mean ‘perror’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pd-tclpd
Version: 0.3.1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
> -std=c99 -DHASHTABLE_COPY_KEYS -I/usr/include/tcl8.6  -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> tcl_widgetbehavior.pd_linux.o -c tcl_widgetbehavior.c
> swig -v -tcl -o tcl_wrap.c -I/usr/include/pd tclpd.i
> In file included from 
> /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
>  from /usr/include/stdint.h:26,
>  from /usr/lib/gcc/x86_64-linux-gnu/13/include/stdint.h:9,
>  from hashtable.h:7,
>  from hashtable.c:1:
> /usr/include/features.h:195:3: warning: #warning "_BSD_SOURCE and 
> _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
>   195 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
> _DEFAULT_SOURCE"
>   |   ^~~
> hashtable.c: In function ‘list_remove’:
> hashtable.c:37:17: warning: passing argument 1 of ‘free’ discards ‘const’ 
> qualifier from pointer target type [-Wdiscarded-qualifiers]
>37 | free(tmp->k);
>   |  ~~~^~~
> In file included from hashtable.h:8:
> /usr/include/stdlib.h:568:25: note: expected ‘void *’ but argument is of type 
> ‘const char *’
>   568 | extern void free (void *__ptr) __THROW;
>   |   ~~^
> hashtable.c:51:21: warning: passing argument 1 of ‘free’ discards ‘const’ 
> qualifier from pointer target type [-Wdiscarded-qualifiers]
>51 | free(tmp->k);
>   |  ~~~^~~
> /usr/include/stdlib.h:568:25: note: expected ‘void *’ but argument is of type 
> ‘const char *’
>   568 | extern void free (void *__ptr) __THROW;
>   |   ~~^
> tcl_class.c: In function ‘tclpd_new’:
> tcl_class.c:108:9: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>   108 | error("tclpd: class not found: %s", name);
>   | ^
>   | perror
> tcl_widgetbehavior.c: In function ‘tclpd_guiclass_vis’:
> tcl_widgetbehavior.c:297:28: warning: format ‘%lx’ expects argument of type 
> ‘long unsigned int’, but argument 4 has type ‘struct _glist *’ [-Wformat=]
>   297 | snprintf(buf, 32, ".x%lx.c", glist_getcanvas(glist));
>   |  ~~^ ~~
>   || |
>   || struct _glist *
>   |long unsigned int
> tclpd.c: In function ‘tclpd_setup’:
> tclpd.c:32:9: error: implicit declaration of function ‘error’; did you mean 
> ‘perror’? [-Werror=implicit-function-declaration]
>32 | error("tclpd: error loading %s", buf);
>   | ^
>   | perror
> tcl_loader.c: In function ‘tclpd_do_load_lib’:
> tcl_loader.c:80:9: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>80 | error("tclpd loader: error trying to load %s", filename);
>   | ^
>   | perror
> tcl_proxyinlet.c: In function ‘proxyinlet_anything’:
> tcl_proxyinlet.c:26:9: error: implicit declaration of function ‘error’; did 
> you mean ‘perror’? [-Werror=implicit-function-declaration]
>26 | error("proxyinlet: getbytes: out of memory");
>   | ^
>   | perror
> tcl_loader.c:69:50: warning: ‘%s’ directive output may be truncated writing 
> up to 999 bytes into a region of size 984 [-Wformat-truncation=]
>69 | snprintf(buf, MAXPDSTRING, "set auto_path \"{%s} $auto_path\"", 
> dirbuf);
>   |  ^~ 
> ~~
> In file included from /usr/include/stdio.h:906,
>  from /usr/include/pd/m_pd.h:82,
>  from tclpd.h:1,
>  from tcl_loader.c:1:
> In function ‘snprintf’,
> inlined from ‘tclpd_do_load

Bug#1066529: samhain: FTBFS: x_sh_prelude.c:840:42: error: implicit declaration of function ‘isblank’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: samhain
Version: 4.1.4-2.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc  -DHAVE_CONFIG_H -I. -I./include  -DUSE_MALLOC_LOCK=1 -Wl,-z,relro 
> -fstack-protector-all -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -D_FORTIFY_SOURCE=2 -fstack-protector-all -DUSE_MALLOC_LOCK=1 -fPIE -Wall -W  
> -fno-strength-reduce -fno-omit-frame-pointer -Wno-empty-body 
> -Wno-invalid-source-encoding  -DSH_STANDALONE -o sh_prelude.o -c 
> x_sh_prelude.c
> x_sh_prelude.c: In function ‘get_service_info’:
> x_sh_prelude.c:840:42: error: implicit declaration of function ‘isblank’ 
> [-Werror=implicit-function-declaration]
>   840 | while (*tmpw && !isblank((int) *tmpw)) ++tmpw;
>   |  ^~~
> x_sh_prelude.c:87:1: note: include ‘’ or provide a declaration of 
> ‘isblank’
>86 | #include "sh_static.h"
>   +++ |+#include 
>87 | char * sh_util_strdup (const char * str) SH_GNUC_MALLOC;
> x_sh_prelude.c:812:24: warning: unused variable ‘tmpw’ [-Wunused-variable]
>   812 | char * tmpw;
>   |^~~~
> At top level:
> cc1: note: unrecognized command-line option ‘-Wno-invalid-source-encoding’ 
> may have been intended to silence earlier diagnostics
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:1114: sh_prelude.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/samhain_4.1.4-2.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066391: marked as done (glide: FTBFS: linhwc.c:844:3: error: implicit declaration of function ‘_grImportFifo’; did you mean ‘_grDRIImportFifo’? [-Werror=implicit-function-declaration])

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 13:31:09 +0100
with message-id 
and subject line Re: Bug#1066391: glide: FTBFS: linhwc.c:844:3: error: implicit 
declaration of function ‘_grImportFifo’; did you mean ‘_grDRIImportFifo’? 
[-Werror=implicit-function-declaration]
has caused the Debian Bug report #1066391,
regarding glide: FTBFS: linhwc.c:844:3: error: implicit declaration of function 
‘_grImportFifo’; did you mean ‘_grDRIImportFifo’? 
[-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066391: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066391
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: glide
Version: 2002.04.10ds1-21
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I/<>/glide3x/h3/minihwc -I../../swlibs/include  -DX11
> -I/<>/glide3x/cinit -I/<>/glide3x/h3/glide3/src 
> -I/<>/glide3x/h3/incsrc -I/<>/glide3x/h3/minihwc  
> -I. -I/<>/glide3x/swlibs/fxmemmap 
> -I/<>/glide3x/swlibs/fxmisc 
> -I/<>/glide3x/swlibs/newpci/pcilib 
> -I/<>/glide3x/swlibs/texus2/lib -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -fomit-frame-pointer -fexpensive-optimizations -ffast-math -DBIG_OPT 
> -MT linhwc.lo -MD -MP -MF .deps/linhwc.Tpo -c -o linhwc.lo linhwc.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. 
> -I/<>/glide3x/h3/minihwc -I../../swlibs/include -DX11 
> -I/<>/glide3x/cinit -I/<>/glide3x/h3/glide3/src 
> -I/<>/glide3x/h3/incsrc -I/<>/glide3x/h3/minihwc 
> -I. -I/<>/glide3x/swlibs/fxmemmap 
> -I/<>/glide3x/swlibs/fxmisc 
> -I/<>/glide3x/swlibs/newpci/pcilib 
> -I/<>/glide3x/swlibs/texus2/lib -Wdate-time -D_FORTIFY_SOURCE=2 
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -fomit-frame-pointer -fexpensive-optimizations -ffast-math -DBIG_OPT 
> -MT linhwc.lo -MD -MP -MF .deps/linhwc.Tpo -c linhwc.c  -fPIC -DPIC -o 
> .libs/linhwc.o
> linhwc.c: In function ‘hwcInitVideo’:
> linhwc.c:435:9: warning: variable ‘stride’ set but not used 
> [-Wunused-but-set-variable]
>   435 |   FxU32 stride, dramInit1, miscInit0;
>   | ^~
> linhwc.c: In function ‘grDRIImportFifo’:
> linhwc.c:844:3: error: implicit declaration of function ‘_grImportFifo’; did 
> you mean ‘_grDRIImportFifo’? [-Werror=implicit-function-declaration]
>   844 |   _grImportFifo(fifoPtr, fifoRead);
>   |   ^
>   |   _grDRIImportFifo
> linhwc.c: In function ‘grDRIInvalidateAll’:
> linhwc.c:848:3: error: implicit declaration of function ‘_grInvalidateAll’; 
> did you mean ‘_grDRIInvalidateAll’? [-Werror=implicit-function-declaration]
>   848 |   _grInvalidateAll();
>   |   ^~~~
>   |   _grDRIInvalidateAll
> linhwc.c: In function ‘grDRIResetSAREA’:
> linhwc.c:853:3: error: implicit declaration of function ‘_grExportFifo’; did 
> you mean ‘_grDRIExportFifo’? [-Werror=implicit-function-declaration]
>   853 |   _grExportFifo((FxU32*)driInfo.fifoPtr, (FxU32*)driInfo.fifoRead);
>   |   ^
>   |   _grDRIExportFifo
> linhwc.c: At top level:
> linhwc.c:588:1: warning: ‘calculateLfbStride’ defined but not used 
> [-Wunused-function]
>   588 | calculateLfbStride(FxU32 screenWidth)
>   | ^~
> linhwc.c:183:13: warning: ‘deleteEnvData’ defined but not used 
> [-Wunused-function]
>   183 | static void deleteEnvData() {
>   | ^
> linhwc.c:139:1: warning: ‘pow2Round’ defined but not used [-Wunused-function]
>   139 | pow2Round(FxU32 val, FxU32 pow2Const)
>   | ^~

Bug#1066353: marked as done (arj: FTBFS: arj.c:594:3: error: implicit declaration of function ‘fcloseall’; did you mean ‘fclose’? [-Werror=implicit-function-declaration])

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 13:28:35 +0100
with message-id 
and subject line Re: Bug#1066353: arj: FTBFS: arj.c:594:3: error: implicit 
declaration of function ‘fcloseall’; did you mean ‘fclose’? 
[-Werror=implicit-function-declaration]
has caused the Debian Bug report #1066353,
regarding arj: FTBFS: arj.c:594:3: error: implicit declaration of function 
‘fcloseall’; did you mean ‘fclose’? [-Werror=implicit-function-declaration]
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 ow...@bugs.debian.org
immediately.)


-- 
1066353: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066353
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: arj
Version: 3.10.22-26
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DSFL=4 -c -Ilinux-gnu -I./linux-gnu/en/rs -I. -DLOCALE=LANG_en 
> -DLOCALE_DESC="\"en\"" -DPKGLIBDIR="\"/usr/lib/x86_64-linux-gnu/arj\"" 
> -D_UNIX -Wdate-time -D_FORTIFY_SOURCE=2 -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -olinux-gnu/en/rs/arj/arj_arcv.o arj_arcv.c
> encode.c: In function ‘huf_encode_m3’:
> encode.c:1218:30: warning: pointer targets in passing argument 1 of 
> ‘fetch_uncomp’ differ in signedness [-Wpointer-sign]
>  1218 |   if((fetch=fetch_uncomp(tree+tree_el, fetch))==0)
>   |  ^~~~
>   |  |
>   |  unsigned char *
> encode.c:244:24: note: expected ‘char *’ but argument is of type ‘unsigned 
> char *’
>   244 | int fetch_uncomp(char *dest, int n)
>   |  ~~^~~~
> encode.c: In function ‘encode_f’:
> encode.c:1584:26: warning: pointer targets in passing argument 1 of 
> ‘fetch_uncomp’ differ in signedness [-Wpointer-sign]
>  1584 |   if((fetch=fetch_uncomp(tree, fetch))==0)
>   |  ^~~~
>   |  |
>   |  unsigned char *
> encode.c:244:24: note: expected ‘char *’ but argument is of type ‘unsigned 
> char *’
>   244 | int fetch_uncomp(char *dest, int n)
>   |  ~~^~~~
> arj.c: In function ‘final_cleanup’:
> arj.c:594:3: error: implicit declaration of function ‘fcloseall’; did you 
> mean ‘fclose’? [-Werror=implicit-function-declaration]
>   594 |   fcloseall();
>   |   ^
>   |   fclose
> arj.c: In function ‘main’:
> arj.c:830:39: warning: pointer targets in passing argument 1 of 
> ‘reg_validation’ differ in signedness [-Wpointer-sign]
>   830 |   is_registered=reg_validation(regdata+REG_KEY1_SHIFT, 
> regdata+REG_KEY2_SHIFT, regdata+REG_NAME_SHIFT, regdata+REG_HDR_SHIFT);
> In file included from arj.h:19,
>  from arj.c:13:
> file_reg.h:11:26: note: expected ‘char *’ but argument is of type ‘unsigned 
> char *’
>11 | int reg_validation(char *key1, char *key2, char *name, char 
> *validation);
>   |~~^~~~
> arj.c:830:63: warning: pointer targets in passing argument 2 of 
> ‘reg_validation’ differ in signedness [-Wpointer-sign]
>   830 |   is_registered=reg_validation(regdata+REG_KEY1_SHIFT, 
> regdata+REG_KEY2_SHIFT, regdata+REG_NAME_SHIFT, regdata+REG_HDR_SHIFT);
> file_reg.h:11:38: note: expected ‘char *’ but argument is of type ‘unsigned 
> char *’
>11 | int reg_validation(char *key1, char *key2, char *name, char 
> *validation);
>   |~~^~~~
> arj.c:830:87: warning: pointer targets in passing argument 3 of 
> ‘reg_validation’ differ in signedness [-Wpointer-sign]
>   830 |   is_registered=reg_validation(regdata+REG_KEY1_SHIFT, 
> regd

Bug#1066527: xsystem35: FTBFS: sactcg.c:211:27: error: implicit declaration of function ‘sjis2euc’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: xsystem35
Version: 1.7.3-pre5-10
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../.. -I../.. -I../.. -I../../src -I../../src -I../../libltdl 
> -I../../libltdl -I../../modules/lib -I../../modules/lib 
> -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL  -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o sprite_eupdate.lo 
> sprite_eupdate.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c NIGHTDLL.c  -fPIC -DPIC -o 
> .libs/NIGHTDLL.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c nt_scenario.c  -fPIC -DPIC -o 
> .libs/nt_scenario.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c sprite_update.c  -fPIC -DPIC -o 
> .libs/sprite_update.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c sprite_eupdate.c  -fPIC -DPIC -o 
> .libs/sprite_eupdate.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c sactstring.c  -fPIC -DPIC -o 
> .libs/sactstring.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../modules/NIGHTDLL 
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -Wall -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c sprite_draw.c  -fPIC -DPIC -o 
> .libs/sprite_draw.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
> -I../../src -I../../src -I../../libltdl -I../../libltdl -I../../modules/lib 
> -I../../modules/lib -I../../modules/NIGHTDLL -I../../mod

Processed: Bug#1066389 marked as pending in db1-compat

2024-03-13 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #1066389 [src:db1-compat] db1-compat: FTBFS: 
db_dump185/db_dump185.c:190:22: error: implicit declaration of function 
‘getopt’; did you mean ‘getsubopt’? [-Werror=implicit-function-declaration]
Added tag(s) pending.

-- 
1066389: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066389
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066389: marked as pending in db1-compat

2024-03-13 Thread Colin Watson
Control: tag -1 pending

Hello,

Bug #1066389 in db1-compat reported by you has been fixed in the
Git repository and is awaiting an upload. You can see the commit
message below and you can check the diff of the fix at:

https://salsa.debian.org/debian/db1-compat/-/commit/0cd10b5405832373e42bdd95106aa92592e53075


Add missing #include to db_dump185

Closes: #1066389


(this message was generated automatically)
-- 
Greetings

https://bugs.debian.org/1066389



Bug#1066526: fitscut: FTBFS: colormap.c:132:27: error: implicit declaration of function ‘malloc’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: fitscut
Version: 1.4.4-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -Wmissing-prototypes  -c -o 
> output_fits.o output_fits.c
> file_check.c: In function ‘check_output_file’:
> file_check.c:219:31: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   219 | (void)fgets (response, sizeof (response)-1, 
> stdin);
>   |   
> ^~~~
> colormap.c: In function ‘get_colormap’:
> colormap.c:132:27: error: implicit declaration of function ‘malloc’ 
> [-Werror=implicit-function-declaration]
>   132 | CM = (ColorMap *) malloc (sizeof (ColorMap));
>   |   ^~
> colormap.c:43:1: note: include ‘’ or provide a declaration of 
> ‘malloc’
>42 | #include "util.h"
>   +++ |+#include 
>43 | 
> colormap.c:132:27: warning: incompatible implicit declaration of built-in 
> function ‘malloc’ [-Wbuiltin-declaration-mismatch]
>   132 | CM = (ColorMap *) malloc (sizeof (ColorMap));
>   |   ^~
> colormap.c:132:27: note: include ‘’ or provide a declaration of 
> ‘malloc’
> colormap.c: In function ‘get_png_palette’:
> colormap.c:179:33: warning: incompatible implicit declaration of built-in 
> function ‘malloc’ [-Wbuiltin-declaration-mismatch]
>   179 | palette = (png_color *) malloc (sizeof (png_color) * nvals);
>   | ^~
> colormap.c:179:33: note: include ‘’ or provide a declaration of 
> ‘malloc’
> image_scale.c: In function ‘log_image’:
> image_scale.c:216:15: warning: variable ‘user_threshold’ set but not used 
> [-Wunused-but-set-variable]
>   216 | float user_threshold;
>   |   ^~
> image_scale.c:215:15: warning: variable ‘threshold’ set but not used 
> [-Wunused-but-set-variable]
>   215 | float threshold;
>   |   ^
> image_scale.c: In function ‘sqrt_image’:
> image_scale.c:257:15: warning: variable ‘threshold’ set but not used 
> [-Wunused-but-set-variable]
>   257 | float threshold;
>   |   ^
> output_fits.c: In function ‘fitscut_write_primary’:
> output_fits.c:72:14: warning: variable ‘nelements’ set but not used 
> [-Wunused-but-set-variable]
>72 | long nelements;
>   |  ^
> output_fits.c:70:14: warning: variable ‘fpixel’ set but not used 
> [-Wunused-but-set-variable]
>70 | long fpixel[3];
>   |  ^~
> cc1: some warnings being treated as errors
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -Wmissing-prototypes  -c -o 
> output_jpg.o output_jpg.c
> make[2]: *** [Makefile:482: colormap.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/fitscut_1.4.4-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066524: yorick-imutil: FTBFS: imutil.c:404:3: error: implicit declaration of function ‘srandom’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: yorick-imutil
Version: 0.5.7-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2  -fPIC -DPLUG_IN -I. 
> -I/usr/lib/yorick/include -Wdate-time -D_FORTIFY_SOURCE=2  -c -o imutil.o 
> imutil.c
> imutil.c: In function ‘ran1init’:
> imutil.c:404:3: error: implicit declaration of function ‘srandom’ 
> [-Werror=implicit-function-declaration]
>   404 |   srandom();  /* WARNING! this might be platform specific */
>   |   ^~~
> imutil.c: In function ‘ran1’:
> imutil.c:412:10: error: implicit declaration of function ‘random’ 
> [-Werror=implicit-function-declaration]
>   412 |   return random()/norm;
>   |  ^~
> cc1: some warnings being treated as errors
> make[2]: *** [: imutil.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/yorick-imutil_0.5.7-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066525: mlv-smile: FTBFS: src/allocateurs.c:45:39: error: implicit declaration of function ‘getpagesize’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: mlv-smile
Version: 1.47-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wl,-z,relro -Wl,-z,now 
> src/allocateurs.c -o obj/allocateurs.o -c -Wall -ansi -O3 -Iinclude/ 
> -ISpell/include/ -DOCC=1 -DAFF_OCC=0 
> src/allocateurs.c: In function ‘Alloc_Alloc_Cell’:
> src/allocateurs.c:45:39: error: implicit declaration of function 
> ‘getpagesize’ [-Werror=implicit-function-declaration]
>45 |   cel->data = (unsigned char *)malloc(getpagesize());
>   |   ^~~
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:66: obj/allocateurs.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/mlv-smile_1.47-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066523: lprng: FTBFS: auth/krb5_auth.c:55:24: error: implicit declaration of function ‘krb5_read_message’; did you mean ‘krb5_chpw_message’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: lprng
Version: 3.8.B-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -I./include "-DLOCALEDIR=\"/usr/share/locale\"" 
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o lpq.o `test -f 'common/lpq.c' || echo './'`common/lpq.c
> auth/krb5_auth.c: In function ‘server_krb5_auth’:
> auth/krb5_auth.c:55:24: error: implicit declaration of function 
> ‘krb5_read_message’; did you mean ‘krb5_chpw_message’? 
> [-Werror=implicit-function-declaration]
>55 | #  define read_message krb5_read_message
>   |^
> auth/krb5_auth.c:284:34: note: in expansion of macro ‘read_message’
>   284 | while( (retval = read_message(context,,)) 
> == 0 ){
>   |  ^~~~
> auth/krb5_auth.c: In function ‘server_krb5_status’:
> auth/krb5_auth.c:56:25: error: implicit declaration of function 
> ‘krb5_write_message’; did you mean ‘krb5_chpw_message’? 
> [-Werror=implicit-function-declaration]
>56 | #  define write_message krb5_write_message
>   | ^~
> auth/krb5_auth.c:386:37: note: in expansion of macro ‘write_message’
>   386 | if((retval= 
> write_message(context,,))){
>   | ^
> auth/krb5_auth.c: In function ‘client_krb5_auth’:
> auth/krb5_auth.c:642:17: warning: ‘krb5_get_in_tkt_with_keytab’ is deprecated 
> [-Wdeprecated-declarations]
>   642 | if((retval = krb5_get_in_tkt_with_keytab(context, 
> options, addrs,
>   | ^~
> In file included from /usr/include/krb5.h:8,
>  from auth/krb5_auth.c:34:
> /usr/include/krb5/krb5.h:5146:1: note: declared here
>  5146 | krb5_get_in_tkt_with_keytab(krb5_context context, krb5_flags options,
>   | ^~~
> common/lpq.c: In function ‘Term_clear’:
> common/lpq.c:472:17: warning: ignoring return value of ‘setuid’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   472 | setuid( OriginalRUID );
>   | ^~
> gcc -DHAVE_CONFIG_H -I. -I..  -I./include "-DLOCALEDIR=\"/usr/share/locale\"" 
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o lprm.o `test -f 'common/lprm.c' || echo './'`common/lprm.c
> common/linelist.c: In function ‘Build_printcap_info’:
> common/linelist.c:1552:65: warning: ‘%s’ directive argument is null 
> [-Wformat-overflow=]
>  1552 | DEBUG4("Build_printcap_info: old keyid '%s', 
> new '%s'",
>   | ^~
> common/linelist.c:1552:65: warning: ‘%s’ directive argument is null 
> [-Wformat-overflow=]
> gcc -DHAVE_CONFIG_H -I. -I..  -I./include "-DLOCALEDIR=\"/usr/share/locale\"" 
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o lpstat.o `test -f 'common/lpstat.c' || echo './'`common/lpstat.c
> gcc -DHAVE_CONFIG_H -I. -I..  -I./include "-DLOCALEDIR=\"/usr/share/locale\"" 
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o lpf.o `test -f 'common/lpf.c' || echo './'`common/lpf.c
> gcc -DHAVE_CONFIG_H -I. -I..  -I./include "-DLOCALEDIR=\"/usr/share/locale\"" 
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o lpbanner.o `test -f 'common/lpbanner.c' || echo './'`common/lpbanner.c
> gcc -DHAVE_CONFIG_H -I. -I.

Bug#1066522: netpipe: FTBFS: ./src/mpi2.c:110:7: error: implicit declaration of function ‘sched_yield’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: netpipe
Version: 3.7.2-8.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> mpicc.lam -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -DMPI -DMPI2 ./src/netpipe.c \
>./src/mpi2.c -o NPmpi2 -I./ 
> ./src/mpi2.c: In function ‘RecvData’:
> ./src/mpi2.c:110:7: error: implicit declaration of function ‘sched_yield’ 
> [-Werror=implicit-function-declaration]
>   110 |   sched_yield(); /* Since we made r_ptr volatile, we don't 
> necessarily
>   |   ^~~
> cc1: some warnings being treated as errors
> mpicc.lam: No such file or directory
> make[1]: *** [makefile:255: mpi2] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/netpipe_3.7.2-8.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066521: weplab: FTBFS: analpfile.c:105:21: error: implicit declaration of function ‘GetPacketBssid’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: weplab
Version: 0.1.5-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DPACKAGE_NAME=\"weplab\" -DPACKAGE_TARNAME=\"weplab\" 
> -DPACKAGE_VERSION=\"0.1.5\" -DPACKAGE_STRING=\"weplab\ 0.1.5\" 
> -DPACKAGE_BUGREPORT=\"TopoLB\ -\ Jose\ Ignacio\ Sanchez\ 
> \\" -DPACKAGE_URL=\"\" -DPACKAGE=\"weplab\" 
> -DVERSION=\"0.1.5\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_PCAP_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SIGNAL_H=1 
> -DHAVE_TIME_H=1 -DHAVE_NETINET_IN_H=1 -DHAVE_SYS_TYPES_H=1 
> -DHAVE_SYS_WAIT_H=1 -DHAVE_LIBPCAP=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -std=gnu89 -Wall -pipe -c -o md5.o md5.c
> md5.c: In function ‘MD5Final’:
> md5.c:132:26: warning: argument to ‘sizeof’ in ‘memset’ call is the same 
> expression as the destination; did you mean to dereference it? 
> [-Wsizeof-pointer-memaccess]
>   132 | memset(ctx, 0, sizeof(ctx));/* In case it's sensitive */
>   |  ^
> main.c: In function ‘ReadHexByteArray’:
> main.c:138:15: warning: unused variable ‘j’ [-Wunused-variable]
>   138 | int i,j;
>   |   ^
> dictionary.c: In function ‘GetNextWord’:
> dictionary.c:143:27: warning: pointer targets in passing argument 1 of 
> ‘fgets’ differ in signedness [-Wpointer-sign]
>   143 | while (((rv=fgets(word, sz-1, 
> wordfile))!=NULL)&&((word[0]=='\r')||(word[0]=='\n'))) {
>   |   ^~~~
>   |   |
>   |   unsigned char *
> In file included from /usr/include/stdio.h:906,
>  from /usr/include/pcap/pcap.h:136,
>  from /usr/include/pcap.h:43,
>  from dictionary.c:26:
> /usr/include/x86_64-linux-gnu/bits/stdio2.h:209:25: note: expected ‘char * 
> __restrict__’ but argument is of type ‘unsigned char *’
>   209 | fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
>   |~^~~
> dictionary.c: In function ‘dictionary’:
> dictionary.c:284:41: warning: pointer targets in passing argument 1 of 
> ‘strncpy’ differ in signedness [-Wpointer-sign]
>   284 | strncpy(keys, word, global_v.key_len);
>   | ^~~~
>   | |
>   | unsigned char *
> In file included from /usr/include/features.h:490,
>  from /usr/include/inttypes.h:25,
>  from /usr/include/pcap/pcap-inttypes.h:98,
>  from /usr/include/pcap/pcap.h:117:
> /usr/include/x86_64-linux-gnu/bits/string_fortified.h:92:1: note: expected 
> ‘char * __restrict__’ but argument is of type ‘unsigned char *’
>92 | __NTH (strncpy (char *__restrict __dest, const char *__restrict __src,
>   | ^
> dictionary.c:284:47: warning: pointer targets in passing argument 2 of 
> ‘strncpy’ differ in signedness [-Wpointer-sign]
>   284 | strncpy(keys, word, global_v.key_len);
>   |   ^~~~
>   |   |
>   |   unsigned char *
> /usr/include/x86_64-linux-gnu/bits/string_fortified.h:92:1: note: expected 
> ‘const char * __restrict__’ but argument is of type ‘unsigned char *’
>92 | __NTH (strncpy (char *__restrict __dest, const char *__restrict __src,
>   | ^
> main.c: In function ‘main’:
> main.c:303:45: warning: pointer targets in assignment from ‘char *’ to 
> ‘unsigned char *’ differ in signedness [-Wpointer-sign]
>   303 | saux=optarg;
>   | ^
> main.c:307:58: warning: pointer targets in

Bug#1066520: ftools-fv: FTBFS: Visu_tkImgPict.c:1762:9: error: implicit declaration of function ‘_XInitImageFuncPtrs’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: ftools-fv
Version: 5.5.2+dfsg-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -c -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fPIC -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_CONNECT=1 -DHAVE_ACCEPT=1 
> -DHAVE_LIBDL=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_TIME_H=1 -DSTDC_HEADERS=1 
> -DHAVE_DIRENT_H=1 -DHAVE_FCNTL_H=1 -DHAVE_LIMITS_H=1 -DHAVE_MALLOC_H=1 
> -DHAVE_STRING_H=1 -DHAVE_SYS_TIME_H=1 -DHAVE_UNISTD_H=1 
> -DTIME_WITH_SYS_TIME=1 -DHAVE_ALLOCA_H=1 -DHAVE_ALLOCA=1 -DRETSIGTYPE=void 
> -DHAVE_STRFTIME=1 -DHAVE_GETCWD=1 -DHAVE_SOCKET=1 -DHAVE_STRCSPN=1 
> -DHAVE_STRSPN=1 -DHAVE_STRSTR=1 -DHAVE_STRTOD=1 -DHAVE_STRTOL=1 
> -DVISU_LIBRARY=\"/usr/lib/pow\"  -I/usr/include/tcl 
> -I/usr/include/tcl/tk-private/generic/ 
> -I/usr/include/tcl/tk-private/generic//../unix  Visu_tkImgPict.c
> Visu_tkImgPict.c:57:5: warning: initialization of ‘int (*)(Tcl_Interp *, 
> const char *, int,  Tcl_Obj * const*, const Tk_ImageType *, struct 
> Tk_ImageMaster_ *, void **)’ from incompatible pointer type ‘int 
> (*)(Tcl_Interp *, char *, int,  Tcl_Obj * const*, Tk_ImageType *, struct 
> Tk_ImageMaster_ *, void **)’ [-Wincompatible-pointer-types]
>57 | ImgPictCreate,  /* createProc */
>   | ^
> Visu_tkImgPict.c:57:5: note: (near initialization for 
> ‘tkPictImageType.createProc’)
> Visu_tkImgPict.c: In function ‘ImgPictCmd’:
> Visu_tkImgPict.c:985:24: warning: zero-length gnu_printf format string 
> [-Wformat-zero-length]
>   985 | sprintf(string,"");
>   |^~
> Visu_tkImgPict.c:1034:24: warning: zero-length gnu_printf format string 
> [-Wformat-zero-length]
>  1034 | sprintf(string,"");
>   |^~
> Visu_tkImgPict.c: In function ‘ParseSubcommandOptions’:
> Visu_tkImgPict.c:1341:16: warning: assignment discards ‘const’ qualifier from 
> pointer target type [-Wdiscarded-qualifiers]
>  1341 | option = argv[index];
>   |^
> Visu_tkImgPict.c:1501:32: warning: assignment discards ‘const’ qualifier from 
> pointer target type [-Wdiscarded-qualifiers]
>  1501 | optPtr->format = argv[index];
>   |^
> Visu_tkImgPict.c: In function ‘ImgPictConfigureInstance’:
> Visu_tkImgPict.c:1762:9: error: implicit declaration of function 
> ‘_XInitImageFuncPtrs’ [-Werror=implicit-function-declaration]
>  1762 | _XInitImageFuncPtrs(imagePtr);
>   | ^~~
> Visu_tkImgPict.c: In function ‘ImgPictSnap2Pict’:
> Visu_tkImgPict.c:2607:37: warning: passing argument 1 of ‘Tk_FindPict’ 
> discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
>  2607 |   if ((destHandle = Tk_FindPict(argv[2])) == NULL) {
>   | ^~~
> In file included from Visu_tkImgPict.c:26:
> tkpict.h:345:40: note: expected ‘char *’ but argument is of type ‘const char 
> *’
>   345 | extern Tk_PictHandle Tk_FindPict(char *imageName);
>   |  ~~^
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:138: Visu_tkImgPict.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/ftools-fv_5.5.2+dfsg-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066518: fgetty: FTBFS: fgetty.c:278:12: error: implicit declaration of function ‘isdigit’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: fgetty
Version: 0.7-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -Os -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 checkpassword.c -lcrypt -Wl,-z,relro 
> -Wl,-z,now -o checkpassword
> fgetty.c: In function ‘main’:
> fgetty.c:278:12: error: implicit declaration of function ‘isdigit’ 
> [-Werror=implicit-function-declaration]
>   278 |   else if (isdigit(tty[0])) {
>   |^~~
> fgetty.c:16:1: note: include ‘’ or provide a declaration of ‘isdigit’
>15 | #include "fmt.h"
>   +++ |+#include 
>16 | 
> login.c:61:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>61 | main(int argc,char *argv[]) {
>   | ^~~~
> login2.c:60:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>60 | main(int argc,char *argv[]) {
>   | ^~~~
> checkpassword.c: In function ‘__write2’:
> checkpassword.c:16:3: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>16 |   write(2,message,strlen(message));
>   |   ^~~~
> diet -Os cc -Wl,-z,relro -Wl,-z,now -o login login.o
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:13: fgetty.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/fgetty_0.7-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066517: pd-hcs: FTBFS: stat.c:123:17: error: implicit declaration of function ‘error’; did you mean ‘perror’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pd-hcs
Version: 0.2.1-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> canvas_name.pd_linux.o -c canvas_name.c
>  info: making folder_list.pd_linux.o in lib hcs
> classpath.c: In function ‘classpath_setup’:
> classpath.c:138:38: warning: macro "__DATE__" might prevent reproducible 
> builds [-Wdate-time]
>   138 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |  ^~~~
> classpath.c:138:52: warning: macro "__TIME__" might prevent reproducible 
> builds [-Wdate-time]
>   138 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |^~~~
> stat.c: In function ‘stat_output_error’:
> stat.c:123:17: error: implicit declaration of function ‘error’; did you mean 
> ‘perror’? [-Werror=implicit-function-declaration]
>   123 | error("[stat]: access denied: %s", 
> x->x_filename->s_name);
>   | ^
>   | perror
> stat.c: In function ‘stat_setup’:
> stat.c:302:38: warning: macro "__DATE__" might prevent reproducible builds 
> [-Wdate-time]
>   302 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |  ^~~~
> stat.c:302:52: warning: macro "__TIME__" might prevent reproducible builds 
> [-Wdate-time]
>   302 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |^~~~
> passwd.c: In function ‘get_uid_from_arguments’:
> passwd.c:118:25: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>   118 | error("[passwd]: UID less than zero not 
> allowed (%d)", (int)uid);
>   | ^
>   | perror
> passwd.c: In function ‘passwd_setup’:
> passwd.c:205:38: warning: macro "__DATE__" might prevent reproducible builds 
> [-Wdate-time]
>   205 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |  ^~~~
> passwd.c:205:52: warning: macro "__TIME__" might prevent reproducible builds 
> [-Wdate-time]
>   205 | logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
>   |^~~~
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> folder_list.pd_linux.o -c folder_list.c
>  info: making unsetenv.pd_linux.o in lib hcs
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> unsetenv.pd_linux.o -c unsetenv.c
>  info: making screensize.pd_linux.o in lib hcs
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> screensize.pd_linux.o -c screensize.c
>  info: making group.pd_linux.o in lib hcs
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffil

Bug#1066516: openwince-jtag: FTBFS: flash/cfi.c:84:9: error: implicit declaration of function ‘printf’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: openwince-jtag
Version: 0.5.1-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I. -I.   -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/include/openwince -I/usr/include/openwince/device 
> -I/usr/include/openwince/arm -I./../include  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -c -o cfi.o `test -f 
> 'flash/cfi.c' || echo './'`flash/cfi.c
> flash/cfi.c: In function ‘cfi_detect’:
> flash/cfi.c:84:9: error: implicit declaration of function ‘printf’ 
> [-Werror=implicit-function-declaration]
>84 | printf("buswidth: %d\n",bw);
>   | ^~
> flash/cfi.c:38:1: note: include ‘’ or provide a declaration of 
> ‘printf’
>37 | #include 
>   +++ |+#include 
>38 | #include 
> flash/cfi.c:84:9: warning: incompatible implicit declaration of built-in 
> function ‘printf’ [-Wbuiltin-declaration-mismatch]
>84 | printf("buswidth: %d\n",bw);
>   | ^~
> flash/cfi.c:84:9: note: include ‘’ or provide a declaration of 
> ‘printf’
> cc1: some warnings being treated as errors
> make[5]: *** [Makefile:429: cfi.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/openwince-jtag_0.5.1-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066512: latencytop: FTBFS: fsync.c:330:17: error: implicit declaration of function ‘gettimeofday’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: latencytop
Version: 0.5.0-0.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2 -DHAS_GTK_GUI 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include  
> -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o latencytop-gtk_display.o `test -f 'gtk_display.c' || echo 
> './'`gtk_display.c
> fsync.c: In function ‘fsync_display’:
> fsync.c:330:17: error: implicit declaration of function ‘gettimeofday’ 
> [-Werror=implicit-function-declaration]
>   330 | gettimeofday(, NULL);
>   | ^~~~
> fsync.c: In function ‘parse_ftrace’:
> fsync.c:290:17: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   290 | fgets(line, PATH_MAX-1, file);
>   | ^
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:525: latencytop-fsync.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/latencytop_0.5.0-0.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066515: pmount: FTBFS: luks.c:147:7: error: implicit declaration of function ‘creat’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pmount
Version: 0.9.23-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o pumount.o pumount.c
> luks.c: In function ‘luks_create_lockfile’:
> luks.c:147:7: error: implicit declaration of function ‘creat’ 
> [-Werror=implicit-function-declaration]
>   147 |   f = creat( path, 0600);
>   |   ^
> luks.c:153:3: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   153 |   close(f);
>   |   ^
>   |   pclose
> luks.c: In function ‘luks_remove_lockfile’:
> luks.c:183:5: error: implicit declaration of function ‘unlink’ 
> [-Werror=implicit-function-declaration]
>   183 | unlink(path);
>   | ^~
> policy.c: In function ‘fstab_has_device’:
> policy.c:415:19: warning: assignment discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   415 |   realdev_arg = device;
>   |   ^
> pumount.c: In function ‘main’:
> pumount.c:192:5: warning: ignoring return value of ‘seteuid’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   192 | seteuid( getuid() );
>   | ^~~
> pmount.c: In function ‘main’:
> pmount.c:676:5: warning: ignoring return value of ‘seteuid’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   676 | seteuid( getuid() );
>   | ^~~
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:517: luks.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pmount_0.9.23-7_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066511: photopc: FTBFS: fnames.c:118:21: error: implicit declaration of function ‘strlen’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: photopc
Version: 3.07-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I./dos -I./win32   -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -c -o eph_iob.o eph_iob.c
> filetime.c:2:14: warning: ‘rcsid’ defined but not used [-Wunused-variable]
> 2 | static char *rcsid="$Id: filetime.c,v 1.7 1999/12/11 14:10:15 crosser 
> Exp $";
>   |  ^
> fnames.c: In function ‘makename’:
> fnames.c:118:21: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   118 | (filenm[strlen(filenm)-1] == '\\') ||
>   | ^~
> fnames.c:69:1: note: include ‘’ or provide a declaration of ‘strlen’
>68 | #include "ctimez.h"
>   +++ |+#include 
>69 | 
> fnames.c:118:21: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   118 | (filenm[strlen(filenm)-1] == '\\') ||
>   | ^~
> fnames.c:118:21: note: include ‘’ or provide a declaration of 
> ‘strlen’
> fnames.c:128:21: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   128 | if (strlen(nameformat) == 1) {
>   | ^~
> fnames.c:128:21: note: include ‘’ or provide a declaration of 
> ‘strlen’
> fnames.c:282:22: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   282 | for (p=fname+strlen(filenm);*p;p++) if (*p == '/') {
>   |  ^~
> fnames.c:282:22: note: include ‘’ or provide a declaration of 
> ‘strlen’
> fnames.c: At top level:
> fnames.c:2:14: warning: ‘rcsid’ defined but not used [-Wunused-variable]
> 2 | static char *rcsid="$Id: fnames.c,v 1.7 2001/01/11 06:49:57 crosser 
> Exp $";
>   |  ^
> exifscan.c: In function ‘exifscan’:
> exifscan.c:64:50: warning: pointer targets in passing argument 1 of 
> ‘strcasecmp’ differ in signedness [-Wpointer-sign]
>64 | if ((*p == 0xe1) && (strcasecmp(p+3,"Exif")==0)) {
>   | ~^~
>   |  |
>   |  unsigned char *
> In file included from /usr/include/string.h:462,
>  from exifscan.c:48:
> /usr/include/strings.h:116:36: note: expected ‘const char *’ but argument is 
> of type ‘unsigned char *’
>   116 | extern int strcasecmp (const char *__s1, const char *__s2)
>   |^~~~
> exifscan.c: In function ‘exifstr’:
> exifscan.c:225:41: warning: pointer targets in returning ‘char *’ from a 
> function with return type ‘unsigned char *’ differ in signedness 
> [-Wpointer-sign]
>   225 | if (buf == NULL) return "";
>   | ^
> exifscan.c:226:25: warning: pointer targets in passing argument 1 of 
> ‘sprintf’ differ in signedness [-Wpointer-sign]
>   226 | sprintf(buf,"\"%s\"",data+offset);
>   | ^~~
>   | |
>   | unsigned char *
> In file included from /usr/include/features.h:490,
>  from /usr/include/x86_64-linux-gnu/sys/types.h:25,
>  from exifscan.c:44:
> /usr/include/x86_64-linux-gnu/bits/stdio2.h:28:1: note: expected ‘char * 
> restrict’ but argument is of type ‘unsigned char *’
>28 | __NTH (sprintf (char *__restrict __s, const char *__restrict __fmt, 
> ...))
>   | ^
> exifscan.c:236:41: warning: pointer targets in returning ‘char *’ from a 
> function with return type ‘unsigned char *’ differ in signedness 
> [-Wpointer-sign]
>   236 | if (buf == NULL) return "";
>   | ^
> exifscan.c:240:40: warning: pointer targets in passing argument 1 of 
> ‘sprintf’ d

Bug#1066514: lrzsz: FTBFS: error.c:172:43: error: implicit declaration of function ‘strcmp’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: lrzsz
Version: 0.12.21-10
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c error.c
> error.c: In function ‘error_at_line’:
> error.c:172:43: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>   172 |   (file_name == old_file_name || !strcmp (old_file_name, 
> file_name)))
>   |   ^~
> error.c:29:1: note: include ‘’ or provide a declaration of ‘strcmp’
>28 | #  include 
>   +++ |+#include 
>29 | #  define VA_START(args, lastarg) va_start(args, lastarg)
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:306: error.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/lrzsz_0.12.21-10_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066513: libkal: FTBFS: kal_getdate.c:35:28: error: implicit declaration of function ‘atoi’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libkal
Version: 0.9.0-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2  -c -o kal_procs.o kal_procs.c
> kal_getdate.c: In function ‘kal_getdate’:
> kal_getdate.c:35:28: error: implicit declaration of function ‘atoi’ 
> [-Werror=implicit-function-declaration]
>35 |   fscanf(fil,"%s",str);day=atoi(str);
>   |^~~~
> kal_getdate.c:40:9: error: implicit declaration of function ‘kal_conv_gre_jd’ 
> [-Werror=implicit-function-declaration]
>40 |  return kal_conv_gre_jd(day,month,year);
>   | ^~~
> kal_getdate.c:35:3: warning: ignoring return value of ‘fscanf’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>35 |   fscanf(fil,"%s",str);day=atoi(str);
>   |   ^~~~
> kal_getdate.c:36:3: warning: ignoring return value of ‘fscanf’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>36 |   fscanf(fil,"%s",str);month=atoi(str);
>   |   ^~~~
> kal_getdate.c:37:3: warning: ignoring return value of ‘fscanf’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>37 |   fscanf(fil,"%s",str);year=atoi(str);
>   |   ^~~~
> cc1: some warnings being treated as errors
> make[1]: *** [: kal_getdate.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/libkal_0.9.0-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066510: hashrat: FTBFS: files.c:651:1: error: implicit declaration of function ‘MapClear’; did you mean ‘MapCreate’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: hashrat
Version: 1.13-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -pie -Wl,-z,relro -Wl,-z,now -Wdate-time -D_FORTIFY_SOURCE=2 -fPIE -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_LIBC=1 -DUSE_XATTR=1 -c filesigning.c
> command-line-args.c: In function ‘CommandLineParseArgs’:
> files.c: In function ‘HashratHashSingleFile’:
> files.c:243:18: warning: format ‘%llu’ expects argument of type ‘long long 
> unsigned int’, but argument 2 has type ‘__time_t’ {aka ‘long int’} [-Wformat=]
>   243 | printf("cache %llu %llu %llu\n",XattrStat.st_mtime, FStat->st_mtime, 
> XattrStat.st_mtime - FStat->st_mtime);
>   |   ~~~^
>   |  |
>   |  long long unsigned int
>   |   %lu
> command-line-args.c:279:66: warning: passing argument 1 of 
> ‘IncludeExcludeLoadExcludesFromFile’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>   279 | else if (strcmp(arg,"-X")==0) IncludeExcludeLoadExcludesFromFile(Ctx, 
> CommandLineNext());
>   |  ^~~
>   |  |
>   |  
> HashratCtx *
> In file included from command-line-args.c:2:
> include-exclude.h:8:53: note: expected ‘const char *’ but argument is of type 
> ‘HashratCtx *’
> 8 | void IncludeExcludeLoadExcludesFromFile(const char *Path, HashratCtx 
> *Ctx);
>   | ^~~~
> command-line-args.c:279:71: warning: passing argument 2 of 
> ‘IncludeExcludeLoadExcludesFromFile’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>   279 | else if (strcmp(arg,"-X")==0) IncludeExcludeLoadExcludesFromFile(Ctx, 
> CommandLineNext());
>   |   
> ^
>   |   
> |
>   |   
> const char *
> include-exclude.h:8:71: note: expected ‘HashratCtx *’ but argument is of type 
> ‘const char *’
> 8 | void IncludeExcludeLoadExcludesFromFile(const char *Path, HashratCtx 
> *Ctx);
>   |   
> ^~~
> files.c:243:23: warning: format ‘%llu’ expects argument of type ‘long long 
> unsigned int’, but argument 3 has type ‘__time_t’ {aka ‘long int’} [-Wformat=]
>   243 | printf("cache %llu %llu %llu\n",XattrStat.st_mtime, FStat->st_mtime, 
> XattrStat.st_mtime - FStat->st_mtime);
>   |~~~^
>   |   |
>   |   long long unsigned int
>   |%lu
> files.c:243:28: warning: format ‘%llu’ expects argument of type ‘long long 
> unsigned int’, but argument 4 has type ‘__time_t’ {aka ‘long int’} [-Wformat=]
>   243 | printf("cache %llu %llu %llu\n",XattrStat.st_mtime, FStat->st_mtime, 
> XattrStat.st_mtime - FStat->st_mtime);
>   | ~~~^
>   ||
>   |long long unsigned int
>   | %lu
> command-line-args.c: In function ‘HMACSetup’:
> command-line-args.c:20:7: warning: ignoring return value of ‘write’ declared 
> with attribute ‘warn_unused_result’ [-Wunused-result]
>20 |   write(1, "Enter HMAC Key: ",16);
>   |   ^~~
> command-line-args.c:33:7: warning: ignoring return value of ‘write’ declared 
> with attribute ‘warn_unused_result’ [-Wunused-result]

Bug#1066509: dmitry: FTBFS: src/file.c:4:20: error: implicit declaration of function ‘strlen’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dmitry
Version: 1.3a-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I./src/includes   -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fcommon -c -o portscan.o `test -f 'src/portscan.c' || echo 
> './'`src/portscan.c
> src/file.c: In function ‘file_prep’:
> src/file.c:4:20: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
> 4 | outputfile[strlen(outputfile)] = '\0';
>   |^~
> src/file.c:2:1: note: include ‘’ or provide a declaration of 
> ‘strlen’
> 1 | #include "includes/file.h"
>   +++ |+#include 
> 2 | int file_prep()
> src/file.c:4:20: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
> 4 | outputfile[strlen(outputfile)] = '\0';
>   |^~
> src/file.c:4:20: note: include ‘’ or provide a declaration of 
> ‘strlen’
> src/file.c:7:17: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
> 7 | exit(1);
>   | ^~~~
> src/file.c:2:1: note: include ‘’ or provide a declaration of ‘exit’
> 1 | #include "includes/file.h"
>   +++ |+#include 
> 2 | int file_prep()
> src/file.c:7:17: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
> 7 | exit(1);
>   | ^~~~
> src/file.c:7:17: note: include ‘’ or provide a declaration of ‘exit’
> src/file.c: In function ‘file_open’:
> src/file.c:18:17: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>18 | exit(1);
>   | ^~~~
> src/file.c:18:17: note: include ‘’ or provide a declaration of 
> ‘exit’
> src/file.c: In function ‘file_close’:
> src/file.c:27:17: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>27 | exit(1);
>   | ^~~~
> src/file.c:27:17: note: include ‘’ or provide a declaration of 
> ‘exit’
> src/tcp_sock.c: In function ‘readData’:
> src/tcp_sock.c:74:9: warning: ignoring return value of ‘read’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>74 | read((int) tcp_sock, (char *) readbuff, (int) readsize);
>   | ^~~
> src/tcp_sock.c: In function ‘sendData’:
> src/tcp_sock.c:82:9: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>82 | write((int) tcp_sock, (char *) sendbuff, (int) sendsize);
>   | ^~~~
> src/dmitry.c: In function ‘main’:
> src/dmitry.c:37:17: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>37 | exit(1);
>   | ^~~~
> src/dmitry.c:16:1: note: include ‘’ or provide a declaration of 
> ‘exit’
>15 | #include 
>   +++ |+#include 
>16 | 
> src/dmitry.c:37:17: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>37 | exit(1);
>   | ^~~~
> src/dmitry.c:37:17: note: include ‘’ or provide a declaration of 
> ‘exit’
> src/dmitry.c:67:41: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>67 | exit(0);
>   | ^~~~
> src/dmitry.c:67:41: note: include ‘’ or provide a declaration of 
> ‘exit’
> src/dmitry.c:103:33: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>   103 | exit(1);
>   | ^~~~
> src/dmitry.c:103:33: note: include ‘’ or provide a declaration of 
> ‘exit’
> cc1: some warnings being treated as errors
> make[1]: **

Bug#1066508: staden: FTBFS: capture.c:33:14: error: implicit declaration of function ‘mkostemp’; did you mean ‘mkstemp’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: staden
Version: 2.0.0+b11-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -DUSE_NON_CONST  
> -I/<>/./tk_utils -I/<>/./Misc 
> -I/<>/./tk_utils -I/usr/include 
> -I"/usr/include/tcl8.6/tk-private/generic" 
> -I"/usr/include/tcl8.6/tk-private/unix" 
> -I"/usr/include/tcl8.6/tk-private/generic/ttk" 
> -I"/usr/include/tcl8.6/tcl-private/generic" 
> -I"/usr/include/tcl8.6/tcl-private/unix" -I/<>/./seq_utils   
> -I/<> -DSVN_VERSION="" -fPIC   -o capture.o -c capture.c
> capture.c: In function ‘tcl_capture’:
> capture.c:33:14: error: implicit declaration of function ‘mkostemp’; did you 
> mean ‘mkstemp’? [-Werror=implicit-function-declaration]
>33 | fd = mkostemp(NULL, 0666);
>   |  ^~~~
>   |  mkstemp
> capture.c:54:5: warning: ignoring return value of ‘read’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>54 | read(fd, buf, statbuf.st_size);
>   | ^~
> make[2]: Leaving directory '/<>/eba'
> cc1: some warnings being treated as errors
> make[2]: *** [/<>/./tk_utils/../global.mk:388: capture.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/staden_2.0.0+b11-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066506: mcpp: FTBFS: system.c:2510:20: error: implicit declaration of function ‘readlink’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: mcpp
Version: 2.7.2-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.   
> -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o system.lo system.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> expand.c  -fPIC -DPIC -o .libs/expand.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> support.c  -fPIC -DPIC -o .libs/support.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> directive.c  -fPIC -DPIC -o .libs/directive.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> eval.c  -fPIC -DPIC -o .libs/eval.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> mbchar.c  -fPIC -DPIC -o .libs/mbchar.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> system.c  -fPIC -DPIC -o .libs/system.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> main.c  -fPIC -DPIC -o .libs/main.o
> support.c: In function ‘get_ch’:
> support.c:1590:19: warning: passing argument 1 of ‘free’ discards ‘const’ 
> qualifier from pointer target type [-Wdiscarded-qualifiers]
>  1590 | free( file->src_dir);
>   |   ^
> In file included from configed.H:374,
>  from system.H:45,
>  from support.c:76:
> /usr/include/stdlib.h:568:25: note: expected ‘void *’ but argument is of type 
> ‘const char *’
>   568 | extern void free (void *__ptr) __THROW;
>   |   ~~^
> support.c:1596:19: warning: passing argument 1 of ‘free’ discards ‘const’ 
> qualifier from pointer target type [-Wdiscarded-qualifiers]
>  1596 | free( file->src_dir);   /* Free src_dir */
>   |   ^
> /usr/include/stdlib.h:568:25: note: expected ‘void *’ but argument is of type 
> ‘const char *’
>   568 | extern void free (void *__ptr) __THROW;
>   |   ~~^
> support.c:1599:22: warning: assignment discards ‘const’ qualifier from 
> pointer target type [-Wdiscarded-qualifiers]
>  1599 | cur_fullname = infile->full_fname;
>   |  ^
> support.c: In function ‘get_file’:
> support.c:2308:21: warning: passing argument 1 of ‘strcpy’ discards ‘const’ 
> qualifier from pointer target type [-Wdiscarded-qualifiers]
>  2308 | strcpy( file->src_dir, src_dir);
>   | ^
> In file included from /usr/include/features.h:490,
>  from 
> /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
>  from /usr/include/limits.h:26,
>  from /usr/lib/gcc/x86_64-linux-gnu/13/include/limits.h:205,
>  from /usr/lib/g

Bug#1066507: kannel: FTBFS: configure: error: Either get a multithread-enabled SSL or configure with --disable-ssl

2024-03-13 Thread Lucas Nussbaum
Source: kannel
Version: 1.4.5-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> checking for openssl/pem.h... yes
> checking for openssl/ssl.h... yes
> checking for openssl/err.h... yes
> checking for openssl/hmac.h... yes
> checking whether the OpenSSL library is multithread-enabled... no
> configure: error: Either get a multithread-enabled SSL or configure with 
> --disable-ssl
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/kannel_1.4.5-13_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066505: epic5: FTBFS: functions.c:7547:15: error: implicit declaration of function ‘strptime’; did you mean ‘strftime’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: epic5
Version: 2.1.6-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2  -I./../include -I../include -c functions.c
> functions.c: In function ‘function_strptime’:
> functions.c:7547:15: error: implicit declaration of function ‘strptime’; did 
> you mean ‘strftime’? [-Werror=implicit-function-declaration]
>  7547 | if (!(strptime(input, format, )))
>   |   ^~~~
>   |   strftime
> functions.c: In function ‘function_realpath’:
> functions.c:6496:14: warning: ‘normalize_filename’ accessing 4097 bytes in a 
> region of size 4096 [-Wstringop-overflow=]
>  6496 | if (!normalize_filename(input, resolvedname))
>   |  ^~~
> functions.c:6496:14: note: referencing argument 2 of type ‘char[4097]’
> In file included from ./../include/alias.h:10,
>  from functions.c:46:
> ./../include/ircaux.h:49:9: note: in a call to function ‘normalize_filename’
>49 | int normalize_filename  (const char *, Filename);
>   | ^~
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:34: functions.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/epic5_2.1.6-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066504: wuzzah: FTBFS: utmpx-wrapper.c:8:23: error: implicit declaration of function ‘bail’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: wuzzah
Version: 0.53-3.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -pedantic -c utmpx-wrapper.c
> utmpx-wrapper.c: In function ‘setutent_wrapper’:
> utmpx-wrapper.c:8:23: error: implicit declaration of function ‘bail’ 
> [-Werror=implicit-function-declaration]
> 8 | if(ut_fd < 0) bail("shit man, no utmp record?", 1);
>   |   ^~~~
> utmpx-wrapper.c: In function ‘getutent_wrapper’:
> utmpx-wrapper.c:16:1: warning: control reaches end of non-void function 
> [-Wreturn-type]
>16 | }
>   | ^
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:206: utmpx-wrapper.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/wuzzah_0.53-3.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066502: pd-iemutils: FTBFS: doublechord.c:89:5: error: implicit declaration of function ‘error’; did you mean ‘perror’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pd-iemutils
Version: 0.0.20210927-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time 
> -D_FORTIFY_SOURCE=2 -DPD -I/usr/include/pd -fPIC  -Wdate-time 
> -D_FORTIFY_SOURCE=2 -DPD -I/usr/include/pd -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fPIC -o doublechord.pd_linux.o -c 
> doublechord.c
> doublechord.c: In function ‘doublechord_setup’:
> doublechord.c:89:5: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>89 | error("double-chord built into Pd>=0.49, not enabling 
> iem::punish::doublechord");
>   | ^
>   | perror
> triggerize.c: In function ‘triggerize_setup’:
> triggerize.c:456:5: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>   456 | error("triggerize built into Pd>=0.49, not enabling 
> iem::punish::triggerize");
>   | ^
>   | perror
> src/FXNLMSplus2in~.c: In function ‘FXNLMSplus2in_tilde_check_array’:
> src/FXNLMSplus2in~.c:55:5: error: implicit declaration of function ‘error’; 
> did you mean ‘perror’? [-Werror=implicit-function-declaration]
>55 | error("%s: no such array for FXNLMSplus2in~", 
> array_sym_name->s_name);
>   | ^
>   | perror
> x86_64-linux-gnu-gcc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time 
> -D_FORTIFY_SOURCE=2 -DPD -I/usr/include/pd -fPIC  -Wdate-time 
> -D_FORTIFY_SOURCE=2 -DPD -I/usr/include/pd -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fPIC -o src/add~~.pd_linux.o -c 
> src/add~~.c
>  info: making src/delay~~.pd_linux.o in lib iem_dp
> cc1: some warnings being treated as errors
> make[4]: *** [/usr/share/pd-lib-builder//Makefile.pdlibbuilder:987: 
> doublechord.pd_linux.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pd-iemutils_0.0.20210927-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066503: sucrack: FTBFS: rewriter.c:74:31: error: implicit declaration of function ‘malloc’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: sucrack
Version: 1.2.3-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -Wall -O2 
> -D_GNU_SOURCE -DSTATIC_BUFFER  -DLINUX -DSUCRACK_TITLE="\"sucrack 1.2.3 
> (LINUX)\"" -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DSTATISTICS -c -o sucrack-stat.o `test -f 'stat.c' || echo './'`stat.c
> rewriter.c: In function ‘rewr_get_rules’:
> rewriter.c:74:31: error: implicit declaration of function ‘malloc’ 
> [-Werror=implicit-function-declaration]
>74 | rule_set = (rule_set_t *) malloc(sizeof(rule_set_t));
>   |   ^~
> rewriter.c:34:1: note: include ‘’ or provide a declaration of 
> ‘malloc’
>33 | #include "rules.h"
>   +++ |+#include 
>34 | #include "stat.h"
> rewriter.c:74:31: warning: incompatible implicit declaration of built-in 
> function ‘malloc’ [-Wbuiltin-declaration-mismatch]
>74 | rule_set = (rule_set_t *) malloc(sizeof(rule_set_t));
>   |   ^~
> rewriter.c:74:31: note: include ‘’ or provide a declaration of 
> ‘malloc’
> stat.c: In function ‘stat_display’:
> stat.c:92:24: warning: format ‘%i’ expects argument of type ‘int’, but 
> argument 2 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=]
>92 | printf("\33[0;%iH\33[1m%s\33[0m\n\n\n", (ws.ws_col / 2) - 
> ((strlen(SUCRACK_TITLE) + 7)/ 2), SUCRACK_TITLE);
>   |   ~^
> ~~
>   |||
>   |int  
> size_t {aka long unsigned int}
>   |   %li
> In file included from sucrack.c:41:
> rules.h:59:20: warning: ‘rules_map’ defined but not used [-Wunused-variable]
>59 | static rules_map_t rules_map[] = {
>   |^
> worker.c: In function ‘worker_run’:
> worker.c:152:9: warning: variable ‘rs’ set but not used 
> [-Wunused-but-set-variable]
>   152 | int rs;
>   | ^~
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:481: sucrack-rewriter.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/sucrack_1.2.3-6_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066501: pd-wiimote: FTBFS: wiimote.c:736:7: error: implicit declaration of function ‘error’; did you mean ‘perror’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pd-wiimote
Version: 0.3.2-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -DPD -I "/usr/include/pd"  -DUNIX -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC  
> -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -o 
> wiimote.pd_linux.o -c wiimote.c
> wiimote.c:405:2: warning: #warning Balance ignores calibration data [-Wcpp]
>   405 | #warning Balance ignores calibration data
>   |  ^~~
> wiimote.c: In function ‘cwiid_error_callback’:
> wiimote.c:736:7: error: implicit declaration of function ‘error’; did you 
> mean ‘perror’? [-Werror=implicit-function-declaration]
>   736 |   error("wiimote: %s", err);
>   |   ^
>   |   perror
> cc1: some warnings being treated as errors
> make[1]: *** [/usr/share/pd-lib-builder//Makefile.pdlibbuilder:987: 
> wiimote.pd_linux.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pd-wiimote_0.3.2-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066498: dh-make-perl: autopkgtest regression due to time_t transition

2024-03-13 Thread Graham Inggs
Source: dh-make-perl
Version: 0.123
Severity: serious
User: debian...@lists.debian.org
Usertags: regression

Hi Maintainer

dh-make-perl's autopkgtest regress when tested with perl/5.38.2-3.2
[1].  I've copied what I hope is the relevant part of the log below.

>From what I can see on the excuses page for perl [2], dh-make-perl's
autopkgtests are the only ones failing on all architectures, besides
perl's own.  Do these test cases need updating to handle the 't64'?

Regards
Graham


[1] https://ci.debian.net/packages/d/dh-make-perl/testing/amd64/
[2] https://qa.debian.org/excuses.php?package=perl


80s t/DpkgLists.t ...
80s 1..7
80s ok 1 - use Debian::DpkgLists;
80s # Perl API is 5.38
80s ok 2 - /usr/bin/perl is in perl-base
80s ok 3 - partial /bin/perl is in perl-base
80s ok 4 - qr{/bin/perl$} is in perl-base
80s not ok 5 - Errno is in libperl5.38 or perl-base (or only perl-base
for perl < 5.22)
80s
80s # Failed test 'Errno is in libperl5.38 or perl-base (or only
perl-base for perl < 5.22)'
80s # at t/DpkgLists.t line 33.
80s # Structures begin differing at:
80s # $got->[0] = 'libperl5.38t64'
80s # $expected->[0] = 'libperl5.38'
80s not ok 6 - IO::Socket::UNIX is in libperl5.38 or perl-base (or
only perl-base for perl < 5.22)
80s
80s # Failed test 'IO::Socket::UNIX is in libperl5.38 or perl-base (or
only perl-base for perl < 5.22)'
80s # at t/DpkgLists.t line 39.
80s # Structures begin differing at:
80s # $got->[0] = 'libperl5.38t64'
80s # $expected->[0] = 'libperl5.38'
80s ok 7 - utf8 is in perl-base or perl-modules-5.38 (or only
perl-base for perl < 5.22)
80s # Looks like you failed 2 tests of 7.
80s Dubious, test returned 2 (wstat 512, 0x200)
80s Failed 2/7 subtests



Bug#1066500: vorbisgain: FTBFS: misc.c:268:9: error: implicit declaration of function ‘isatty’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: vorbisgain
Version: 0.37-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I. -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -O2 
> -fsigned-char -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> `test -f 'misc.c' || echo './'`misc.c
> misc.c: In function ‘get_console_size’:
> misc.c:268:9: error: implicit declaration of function ‘isatty’ 
> [-Werror=implicit-function-declaration]
>   268 | if (isatty(fd))
>   | ^~
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:256: misc.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/vorbisgain_0.37-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066499: thesias: FTBFS: src/thesiaslib.c:57:13: error: implicit declaration of function ‘thesiasRun’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: thesias
Version: 3.1.1-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fPIC 
> -I/usr/lib/jvm/default-java/include 
> -I/usr/lib/jvm/default-java/include/linux/ -c src/*.c
> javac -d class java/*.java
> Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
> src/newthesias3d.c: In function ‘thesiasRun’:
> src/newthesias3d.c:6122:49: warning: too many arguments for format 
> [-Wformat-extra-args]
>  6122 |  
> fprintf(outres,"\t%f\t%f\n\n",effest[0],valse,effest[0]/valse);
>   | ^~
> src/newthesias3d.c:6268:50: warning: too many arguments for format 
> [-Wformat-extra-args]
>  6268 |   
> fprintf(outres,"\t%f\t%f\n\n",effest[nc],valse,effest[nc]/valse);
>   |  ^~
> src/newthesias3d.c: In function ‘nbhapo0’:
> src/newthesias3d.c:4084:4: warning: ignoring return value of ‘scanf’ declared 
> with attribute ‘warn_unused_result’ [-Wunused-result]
>  4084 |scanf("%c",);
>   |^~~~
> src/newthesias3d.c: In function ‘lecteffe’:
> src/newthesias3d.c:4299:17: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4299 | fscanf(readParam,"%c",);
>   | ^~~
> src/newthesias3d.c:4312:25: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4312 | fscanf(readParam,"%c",);
>   | ^~~
> src/newthesias3d.c:4318:25: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4318 | fscanf(readParam,"%d",);
>   | ^~
> src/newthesias3d.c:4327:33: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4327 | fscanf(readParam,"%d %d",,);
>   | ^
> src/newthesias3d.c:4336:25: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4336 | fscanf(readParam,"%c",);
>   | ^~~
> src/newthesias3d.c:4345:33: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4345 | fscanf(readParam,"%d",);
>   | ^~~
> src/newthesias3d.c:4357:41: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4357 | fscanf(readParam,"%d",);
>   | ^~
> src/newthesias3d.c:4369:41: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4369 | fscanf(readParam,"%d 
> %d",,);
>   | 
> ^
> src/newthesias3d.c:4392:25: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4392 | fscanf(readParam,"%c",);
>   | ^~~
> src/newthesias3d.c:4400:33: warning: ignoring return value of ‘fscanf’ 
> declared with attribute ‘warn_unused_result’ [-Wunused-result]
>  4400 | fscanf(readParam,"%d",);
>   | ^
> src/newthesias3d.c:4408:33: warning: ignoring return value of ‘fscanf’ 
> declared with

Bug#1066497: qfits: FTBFS: dtfits.c:163:13: error: implicit declaration of function ‘qfits_query_n_ext’; did you mean ‘qfits_query_column’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: qfits
Version: 6.2.0-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I.. -I../src  -Wdate-time -D_FORTIFY_SOURCE=2  -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o replacekey.o replacekey.c
> dtfits.c: In function ‘qfits_dump’:
> dtfits.c:163:13: error: implicit declaration of function ‘qfits_query_n_ext’; 
> did you mean ‘qfits_query_column’? [-Werror=implicit-function-declaration]
>   163 | n_ext = qfits_query_n_ext(name_i);
>   | ^
>   | qfits_query_column
> qextract.c: In function ‘main’:
> qextract.c:69:14: error: implicit declaration of function 
> ‘qfits_query_n_ext’; did you mean ‘qfits_query_column’? 
> [-Werror=implicit-function-declaration]
>69 | nb_ext = qfits_query_n_ext(name_in) ;
>   |  ^
>   |  qfits_query_column
> /bin/bash ../libtool  --tag=CC   --mode=link gcc  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -Wl,-z,relro -o replacekey 
> replacekey.o ../src/libqfits.la -lm 
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:472: qextract.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/qfits_6.2.0-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066496: rdiff-backup-fs: FTBFS: gstats.h:44:30: error: implicit declaration of function ‘time’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: rdiff-backup-fs
Version: 1.0.0-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -g -O3 -I/usr/include/fuse 
> -D_FILE_OFFSET_BITS=64  -c -o gutils.o gutils.c
> gutils.c: In function ‘gdesccopy’:
> gutils.c:9:17: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
> 9 | write(dest, buffer, result);
>   | ^~~
> gpath.c: In function ‘gpthcldptr’:
> gpath.c:82:5: warning: this ‘for’ clause does not guard... 
> [-Wmisleading-indentation]
>82 | for (; (i >= 0) && (path[i] != '/'); i--);
>   | ^~~
> gpath.c:83:9: note: ...this statement, but the latter is misleadingly 
> indented as if it were guarded by the ‘for’
>83 | (*pointer) = path + i + 1;
>   | ^
> grdiff.c: In function ‘snapshot_copy’:
> grdiff.c:305:17: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   305 | write(snapshot_desc, buffer, result);
>   | ^~~~
> grdiff.c: In function ‘snapshot_append’:
> In file included from gtree.h:5,
>  from gtree.c:3:
> gtree.c: In function ‘gtreenew’:
> grdiff.c:331:9: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   331 | write(snapshot_desc, buffer, 1);
>   | ^~~
> gstats.h:44:30: error: implicit declaration of function ‘time’ 
> [-Werror=implicit-function-declaration]
>44 | (stats)->ctime = time(0);   \
>   |  ^~~~
> gtree.c:42:5: note: in expansion of macro ‘set_directory_stats’
>42 | set_directory_stats(stats);
>   | ^~~
> gtree.c:5:1: note: ‘time’ is defined in header ‘’; did you forget to 
> ‘#include ’?
> 4 | #include "gutils.h"
>   +++ |+#include 
> 5 | 
> grdiff.c:333:17: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   333 | write(snapshot_desc, buffer, result);
>   | ^~~~
> gtree.c: In function ‘tree_save_node’:
> gtree.c:269:9: error: implicit declaration of function ‘asprintf’; did you 
> mean ‘vsprintf’? [-Werror=implicit-function-declaration]
>   269 | asprintf(, "File %s\n", node->stats->internal);
>   | ^~~~
>   | vsprintf
> gtree.c:295:9: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   295 | write(desc, result, strlen(result));
>   | ^~~
> gstring.c: In function ‘__gstrcat’:
> gstring.c:60:5: warning: ‘__builtin_strncpy’ specified bound depends on the 
> length of the source argument [-Wstringop-truncation]
>60 | strncpy((*dest), source, count);
>   | ^
> In function ‘gstrcpy’,
> inlined from ‘gstrcpy’ at gstring.c:67:5,
> inlined from ‘__gstrcat’ at gstring.c:23:5:
> gstring.c:73:18: note: length computed here
>73 | int length = strlen(source);
>   |  ^~
> In file included from gstats.h:4,
>  from grdiff.h:5,
>  from grdiff.c:4:
> grdiff.c: In function ‘get_revs_dir’:
> ../headers.h:41:27: warning: ‘%02d’ directive writing between 2 and 11 bytes 
> into a region of size between 8 and 15 [-Wformat-overflow=]
>41 | #define ARCHFS_DIR_FORMAT "%4d-%02d-%02dT%02d:%02d:%02d"
>   |   ^~
> grdiff.c:155:21: note: in expansion of macro ‘ARCHFS_DIR_FORMAT’
>   155 | sprintf(result, ARCHFS_DIR_FORMAT, rev_tm->tm_year + 1900,
>   | ^
> ../headers.h:41:32: note: format string is defined here
>41 | #define ARCHFS_DIR_FORMAT "%4d-%02d-%02

Bug#1066495: libjconv: FTBFS: jconv.c:34:21: error: implicit declaration of function ‘strcmp’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libjconv
Version: 2.8-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -fPIC -DHAVE_CODESET -Wdate-time -D_FORTIFY_SOURCE=2  -c -o jconv.o jconv.c
> jconv.c: In function ‘main’:
> jconv.c:34:21: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>34 | if (strcmp(argv[i], "-c") == 0) {
>   | ^~
> jconv.c:9:1: note: include ‘’ or provide a declaration of ‘strcmp’
> 8 | #include "jconv.h"
>   +++ |+#include 
> 9 | 
> cc1: some warnings being treated as errors
> make[1]: *** [: jconv.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/libjconv_2.8-7_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066494: wmrack: FTBFS: wmrack.c:1295:29: error: implicit declaration of function ‘time’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: wmrack
Version: 1.4-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection  
> -Wdate-time -D_FORTIFY_SOURCE=2   -c -o wmrack.o wmrack.c
> make[2]: Leaving directory '/<>/XPM'
> wmrack.c: In function ‘redrawDisplay’:
> wmrack.c:1238:12: warning: type defaults to ‘int’ in declaration of ‘flash’ 
> [-Wimplicit-int]
>  1238 | static flash = 0;
>   |^
> wmrack.c:1295:29: error: implicit declaration of function ‘time’ 
> [-Werror=implicit-function-declaration]
>  1295 | time_t flash_time = time (NULL);
>   | ^~~~
> wmrack.c:39:1: note: ‘time’ is defined in header ‘’; did you forget 
> to ‘#include ’?
>38 | #include "library.h"
>   +++ |+#include 
>39 | 
> echo "Done" > .depend
> cc1: some warnings being treated as errors
> make[1]: *** [: wmrack.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/wmrack_1.4-6_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066493: pd-csound: FTBFS: csoundapi_tilde.c:774:7: error: implicit declaration of function ‘error’; did you mean ‘perror’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pd-csound
Version: 2:1.01.0-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /usr/bin/cc -Dpdcsound_EXPORTS -I/usr/include/csound -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC 
> -MD -MT CMakeFiles/pdcsound.dir/src/csoundapi_tilde.c.o -MF 
> CMakeFiles/pdcsound.dir/src/csoundapi_tilde.c.o.d -o 
> CMakeFiles/pdcsound.dir/src/csoundapi_tilde.c.o -c 
> /<>/src/csoundapi_tilde.c
> /<>/src/csoundapi_tilde.c: In function ‘open_midi_callback’:
> /<>/src/csoundapi_tilde.c:774:7: error: implicit declaration of 
> function ‘error’; did you mean ‘perror’? 
> [-Werror=implicit-function-declaration]
>   774 |   error("unable to allocate memory for midi queue");
>   |   ^
>   |   perror
> cc1: some warnings being treated as errors
> make[3]: *** [CMakeFiles/pdcsound.dir/build.make:79: 
> CMakeFiles/pdcsound.dir/src/csoundapi_tilde.c.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pd-csound_1.01.0-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066492: tinydyndns: FTBFS: seek_set.c:7:7: error: implicit declaration of function ‘lseek’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: tinydyndns
Version: 0.4.2.debian1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[2]: Entering directory '/<>'
> ( cat warn-auto.sh; \
> echo 'main="$1"; shift'; \
> echo exec "`head -1 conf-ld`" \
> '-o "$main" "$main".o ${1+"$@"}' \
> ) > load
> ( cat warn-auto.sh; \
> echo exec "`head -1 conf-cc`" '-c ${1+"$@"}' \
> ) > compile
> chmod 755 load
> chmod 755 compile
> cat warn-auto.sh choose.sh \
> | sed s}HOME}"`head -1 conf-home`"}g \
> > choose
> ( cat warn-auto.sh; \
> echo CC=\'`head -1 conf-cc`\'; \
> echo LD=\'`head -1 conf-ld`\'; \
> cat find-systype.sh; \
> ) | sh > systype
> ./compile env.c
> ./compile alloc.c
> ./compile alloc_re.c
> ./compile getln.c
> chmod 755 choose
> ./compile getln2.c
> ./compile stralloc_cat.c
> ./compile stralloc_catb.c
> ./compile stralloc_cats.c
> ./compile stralloc_copy.c
> ./compile stralloc_eady.c
> ./compile stralloc_num.c
> ./compile stralloc_opyb.c
> ./compile stralloc_opys.c
> ./compile stralloc_pend.c
> ./compile buffer.c
> ./compile buffer_1.c
> ./compile buffer_2.c
> ./compile buffer_copy.c
> ./compile buffer_get.c
> ./compile buffer_put.c
> ./compile strerr_die.c
> ./compile strerr_sys.c
> ./compile buffer_read.c
> ./compile buffer_write.c
> ./compile error.c
> ./compile error_str.c
> ./compile ndelay_off.c
> ./compile ndelay_on.c
> ./compile open_read.c
> ./compile open_trunc.c
> ./compile openreadclose.c
> ./compile readclose.c
> ./compile seek_set.c
> ./compile socket_accept.c
> ./compile socket_bind.c
> seek_set.c: In function ‘seek_set’:
> seek_set.c:7:7: error: implicit declaration of function ‘lseek’ 
> [-Werror=implicit-function-declaration]
> 7 | { if (lseek(fd,(off_t) pos,SET) == -1) return -1; return 0; }
>   |   ^
> ./compile socket_conn.c
> ./compile socket_listen.c
> ./compile socket_recv.c
> ./compile socket_send.c
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile.djbdns:767: seek_set.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/tinydyndns_0.4.2.debian1-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066491: libt3window: FTBFS: .config.c:8:13: error: implicit declaration of function ‘setupterm’; did you mean ‘set_term’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libt3window
Version: 0.4.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> `pkg-config --cflags tinfo` -c -o .config.o .config.c
> .config.c: In function ‘main’:
> .config.c:8:13: error: implicit declaration of function ‘setupterm’; did you 
> mean ‘set_term’? [-Werror=implicit-function-declaration]
> 8 | if (setupterm(NULL, fd, ) == OK) {
>   | ^
>   | set_term
> .config.c:12:17: error: implicit declaration of function ‘tputs’; did you 
> mean ‘puts’? [-Werror=implicit-function-declaration]
>12 | tputs("\033[0m", 1, putchar);
>   | ^
>   | puts
> cc1: some warnings being treated as errors
> make[2]: *** [.Makefile:19: .config.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/libt3window_0.4.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066488: qrouter: FTBFS: qrouter.c:880:4: error: implicit declaration of function ‘find_free_antenna_taps’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: qrouter
Version: 1.4.71-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -m64 -fPIC -fPIC -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_VA_COPY=1 
> -DHAVE___VA_COPY=1 -DHAVE_LIBXT=1 -DHAVE_SYS_MMAN_H=1 -DTCL_QROUTER=1 
> -DLINUX=1 -DSYSV=1 -DVERSION=\"1.4\" -DREVISION=\"71\" -DUSE_TCL_STUBS 
> -DUSE_TK_STUBS \
>   -DQROUTER_PATH=\"/usr/lib/qrouter\" 
> -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -c def.c -o 
> def.o
> qrouter.c: In function ‘post_def_setup’:
> qrouter.c:880:4: error: implicit declaration of function 
> ‘find_free_antenna_taps’ [-Werror=implicit-function-declaration]
>   880 |find_free_antenna_taps(antenna_cell);
>   |^~
> qrouter.c: In function ‘route_setup’:
> qrouter.c:1942:9: error: implicit declaration of function ‘createMask’; did 
> you mean ‘ActivateMask’? [-Werror=implicit-function-declaration]
>  1942 | createMask(iroute->net, MASK_SMALL, (u_char)Numpasses);
>   | ^~
>   | ActivateMask
> qrouter.c:1949:6: error: implicit declaration of function ‘createBboxMask’ 
> [-Werror=implicit-function-declaration]
>  1949 |  createBboxMask(iroute->net, (u_char)Numpasses);
>   |  ^~
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -m64 -fPIC -fPIC -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_VA_COPY=1 
> -DHAVE___VA_COPY=1 -DHAVE_LIBXT=1 -DHAVE_SYS_MMAN_H=1 -DTCL_QROUTER=1 
> -DLINUX=1 -DSYSV=1 -DVERSION=\"1.4\" -DREVISION=\"71\" -DUSE_TCL_STUBS 
> -DUSE_TK_STUBS \
>   -DQROUTER_PATH=\"/usr/lib/qrouter\" 
> -I/usr/include/tcl8.6/tk-private/generic -I/usr/include/tcl8.6 -c graphics.c 
> -o graphics.o
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -m64 -fPIC -fPIC -DPACKAGE_NAME=\"\" 
> -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" 
> -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_SETENV=1 -DHAVE_PUTENV=1 -DHAVE_VA_COPY=1 
> -DHAVE___VA_COPY=1 -DHAVE_LIBXT=1 -DHAVE_SYS_MMAN_H=1 -DTCL_QROUTER=1 
> -DLINUX=1 -DSYSV=1 -DVERSION=\"1.4\" -DREVISION=\"71\" -DUSE_TCL_STUBS 
> -DUSE_TK_STUBS \
>   -DQROUTER_PATH=\"/usr

Bug#1066404: marked as done (proftpd-dfsg: FTBFS: ld: cannot find -lnsl: No such file or directory)

2024-03-13 Thread Debian Bug Tracking System
Your message dated Wed, 13 Mar 2024 13:17:40 +0100
with message-id 
and subject line Re: Bug#1066404: proftpd-dfsg: FTBFS: ld: cannot find -lnsl: 
No such file or directory
has caused the Debian Bug report #1066404,
regarding proftpd-dfsg: FTBFS: ld: cannot find -lnsl: No such file or directory
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 ow...@bugs.debian.org
immediately.)


-- 
1066404: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066404
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: proftpd-dfsg
Version: 1.3.8.b+dfsg-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -DHAVE_CONFIG_H  -DLINUX  -I.. 
> -I../include -I../include -I/usr/include/mariadb/mysql -I/usr/include/mariadb 
> -I/usr/include/postgresql -I/usr/include/mariadb -I/usr/include/mariadb/mysql 
> -I/usr/include/postgresql -Wdate-time -D_FORTIFY_SOURCE=2 -g2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -fno-omit-frame-pointer 
> -fno-strict-aliasing -Werror=implicit-function-declaration -g -O2 
> -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>/src=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> filter.c
> libtool: link: gcc -shared  .libs/mod_wrap.o   -L/usr/lib/x86_64-linux-gnu/ 
> -L/usr/lib/x86_64-linux-gnu -lidn2 -lsodium -lwrap -lnsl  -Wl,-L../lib 
> -Wl,-L../lib -Wl,-z -Wl,relro -Wl,-z -Wl,now -Wl,-z -Wl,relro -Wl,-z -Wl,now  
>  -Wl,-soname -Wl,mod_wrap.so -o .libs/mod_wrap.so
> /usr/bin/ld: cannot find -lnsl: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/proftpd-dfsg_1.3.8.b+dfsg-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.
--- End Message ---
--- Begin Message ---

Version: 1.3.8.b+dfsg-2

On 13.03.2024 13:05, Lucas Nussbaum wrote:


During a rebuild of all packages in sid, your package failed to build
on amd64.



Miiiep. You were to slow this time.

H.
--
sigfault



OpenPGP_signature.asc
Description: OpenPGP digital signature
--- End Message ---


Bug#1066490: motif: FTBFS: XpmCrBufFrI.c:155:5: error: implicit declaration of function ‘strcpy’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: motif
Version: 2.3.8-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. 
> -I../../include -I.. -I./.. -DXMBINDDIR_FALLBACK=\"/usr/share/X11/bindings\" 
> -DINCDIR=\"/usr/include/X11\" -DLIBDIR=\"/usr/lib/x86_64-linux-gnu/X11\" 
> -DX11RGBPATH=\"/etc/X11/rgb.txt\"   -Wdate-time -D_FORTIFY_SOURCE=2  
> -I/usr/include/freetype2 -I/usr/include/libpng16   -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -D_FILE_OFFSET_BITS=64 -Wall -g 
> -fno-strict-aliasing -Wno-unused -Wno-comment -I/usr/include/freetype2 
> -I/usr/include/libpng16-c -o XpmCrBufFrP.lo XpmCrBufFrP.c
> XpmCrBufFrI.c: In function ‘XmeXpmCreateBufferFromXpmImage’:
> XpmCrBufFrI.c:155:5: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>   155 | strcpy(ptr, buf);
>   | ^~
> XpmCrBufFrI.c:47:1: note: include ‘’ or provide a declaration of 
> ‘strcpy’
>46 | #include "XpmI.h"
>   +++ |+#include 
>47 | 
> XpmCrBufFrI.c:155:5: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>   155 | strcpy(ptr, buf);
>   | ^~
> XpmCrBufFrI.c:155:5: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> XpmCrBufFrI.c: In function ‘WriteColors’:
> XpmCrBufFrI.c:292:9: error: implicit declaration of function ‘strncpy’ 
> [-Werror=implicit-function-declaration]
>   292 | strncpy(s, *defaults++, cpp);
>   | ^~~
> XpmCrBufFrI.c:292:9: note: include ‘’ or provide a declaration of 
> ‘strncpy’
> XpmCrBufFrI.c:292:9: warning: incompatible implicit declaration of built-in 
> function ‘strncpy’ [-Wbuiltin-declaration-mismatch]
> XpmCrBufFrI.c:292:9: note: include ‘’ or provide a declaration of 
> ‘strncpy’
> XpmCrBufFrI.c:312:9: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>   312 | strcpy(s, "\",\n");
>   | ^~
> XpmCrBufFrI.c:312:9: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> XpmCrBufFrI.c:316:45: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   316 |(*data_size + l - *used_size) <= strlen(buf))
>   | ^~
> XpmCrBufFrI.c:316:45: note: include ‘’ or provide a declaration of 
> ‘strlen’
> XpmCrBufFrI.c:316:45: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
> XpmCrBufFrI.c:316:45: note: include ‘’ or provide a declaration of 
> ‘strlen’
> XpmCrBufFrI.c: In function ‘WritePixels’:
> XpmCrBufFrI.c:352:13: warning: incompatible implicit declaration of built-in 
> function ‘strncpy’ [-Wbuiltin-declaration-mismatch]
>   352 | strncpy(s, colors[*pixels].string, cpp); /* how can we 
> trust *pixels? :-\ */
>   | ^~~
> XpmCrBufFrI.c:352:13: note: include ‘’ or provide a declaration of 
> ‘strncpy’
> XpmCrBufFrI.c:357:9: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
>   357 | strcpy(s, "\",\n");
>   | ^~
> XpmCrBufFrI.c:357:9: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> XpmCrBufFrI.c:365:9: warning: incompatible implicit declaration of built-in 
> function ‘strncpy’ [-Wbuiltin-declaration-mismatch]
>   365 | strncpy(s, colors[*pixels].string, cpp); /* how can we trust 
> *pixels? */
>   | ^~~
> XpmCrBufFrI.c:365:9: note: include ‘’ or provide a declaration of 
> ‘strncpy’
> XpmCrBufFrI.c: In function ‘ExtensionsSize’:
> XpmCrBufFrI.c:385:17: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   385 | size += strlen(ext->name) + 11;
>   | ^~
> XpmCrBufFrI.c:385:17: note: include ‘’ or provide a declaration of 
> ‘strlen’
> XpmCrBufFrI.c: In function ‘WriteExtensions’:
> XpmCrBufFrI.c:428:5: warning: incompatible implicit decl

Bug#1066489: p0f: FTBFS: .build-609357.c:2:34: error: implicit declaration of function ‘printf’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: p0f
Version: 3.09b-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> Welcome to the build script for p0f 3.09b!
> Copyright (C) 2012 by Michal Zalewski 
> 
> [+] Configuring production build.
> [*] Checking for a sane build environment... OK
> [*] Checking for working GCC... OK
> [*] Checking for *modern* GCC... OK
> [*] Checking if memory alignment is required... FAIL
> 
> Well, something went horribly wrong, sorry. Here's the output from GCC:
> 
> .build-609357.c: In function ‘main’:
> .build-609357.c:2:34: error: implicit declaration of function ‘printf’ 
> [-Werror=implicit-function-declaration]
> 2 | volatile u8 tmp[6]; int main() { printf("%d\n", *(u32*)(tmp+1)); 
> return 0; }
>   |  ^~
> .build-609357.c:2:1: note: include ‘’ or provide a declaration of 
> ‘printf’
> 1 | #include "types.h"
>   +++ |+#include 
> 2 | volatile u8 tmp[6]; int main() { printf("%d\n", *(u32*)(tmp+1)); 
> return 0; }
> .build-609357.c:2:34: warning: incompatible implicit declaration of built-in 
> function ‘printf’ [-Wbuiltin-declaration-mismatch]
> 2 | volatile u8 tmp[6]; int main() { printf("%d\n", *(u32*)(tmp+1)); 
> return 0; }
>   |  ^~
> .build-609357.c:2:34: note: include ‘’ or provide a declaration of 
> ‘printf’
> cc1: some warnings being treated as errors
> 
> Sorry! You may want to ping  about this.
> 
> make[1]: *** [Makefile:11: all] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/p0f_3.09b-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066487: libgpiv: FTBFS: ../../lib/img.c:939:16: error: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libgpiv
Version: 0.6.1-7.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile x86_64-linux-gnu-gcc -fopenmp 
> -DHAVE_CONFIG_H -I. -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include  
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o io_png.lo ../../lib/io_png.c
> libtool: compile:  x86_64-linux-gnu-gcc -fopenmp -DHAVE_CONFIG_H -I. 
> -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include 
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ../../lib/imgproc_deform.c  -fPIC 
> -DPIC -o .libs/imgproc_deform.o
> libtool: compile:  x86_64-linux-gnu-gcc -fopenmp -DHAVE_CONFIG_H -I. 
> -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include 
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ../../lib/io.c  -fPIC -DPIC -o 
> .libs/io.o
> libtool: compile:  x86_64-linux-gnu-gcc -fopenmp -DHAVE_CONFIG_H -I. 
> -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include 
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ../../lib/imgproc_par.c  -fPIC 
> -DPIC -o .libs/imgproc_par.o
> libtool: compile:  x86_64-linux-gnu-gcc -fopenmp -DHAVE_CONFIG_H -I. 
> -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include 
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ../../lib/io_png.c  -fPIC -DPIC -o 
> .libs/io_png.o
> ../../lib/img.c: In function ‘gpiv_img_read_header’:
> ../../lib/img.c:939:16: error: implicit declaration of function ‘gets’; did 
> you mean ‘fgets’? [-Werror=implicit-function-declaration]
>   939 | while (gets (line) != NULL) {
>   |^~~~
>   |fgets
> ../../lib/img.c:939:28: warning: comparison between pointer and integer
>   939 | while (gets (line) != NULL) {
>   |^~
> libtool: compile:  x86_64-linux-gnu-gcc -fopenmp -DHAVE_CONFIG_H -I. 
> -I../../lib -I.. -I../../include -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/realtime/include 
> -I/usr/include/hdf5/serial -I/usr/include/hdf5/serial -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c ../../lib/genpar.c -o genpar.o 
> >/dev/null 2>&1
> ../../lib/io.c: In function ‘gpiv_find_pivdata_origin’:
> ../../lib/io.c:379:28: warning: comparison between pointer and zero character 
> constant [-Wpointer-compare]
>   379 | if (strstr(line, "rr") != '\0') {
>   |^~
> ../../lib/io.c:379:9: note: did you mean to dereference the pointer?
>   379 | if (strstr(line, "rr") != '\0') {
>   | ^
> ../../lib/io.c:381:38: warning: comparison between pointer and zero character 
> constant [-Wpointer-compare]
>   381 | } else if (strstr(line, "DaVis") != '\0') {
>   |  ^~
> ../../lib/io.c:381:16: note: did you mean to dereference the pointer?
>   381

Bug#1066486: icom: FTBFS: icom.c:108:24: error: implicit declaration of function ‘getopt’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: icom
Version: 20120228-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O   -I../include -Wdate-time -D_FORTIFY_SOURCE=2  -c -o tables.o tables.c
> packet.c: In function ‘sndoctet’:
> packet.c:339:9: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   339 | write(fd_icom, , 1);
>   | ^
> icom.c: In function ‘main’:
> icom.c:108:24: error: implicit declaration of function ‘getopt’ 
> [-Werror=implicit-function-declaration]
>   108 | while ((temp = getopt(argc, argcv, "c:df:g:km:o:r:")) != -1) {
>   |^~
> icom.c:314:32: error: implicit declaration of function ‘command’ 
> [-Werror=implicit-function-declaration]
>   314 | temp = command(rptr, key);
>   |^~~
> icom.c:326:41: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   326 | close(fp_cmd[fp]);
>   | ^
>   | pclose
> icom.c:335:37: error: implicit declaration of function ‘gets’; did you mean 
> ‘fgets’? [-Werror=implicit-function-declaration]
>   335 | if (gets(args) == NULL)
>   | ^~~~
>   | fgets
> icom.c:335:48: warning: comparison between pointer and integer
>   335 | if (gets(args) == NULL)
>   |^~
> icom.c: In function ‘qqsv’:
> icom.c:628:17: error: implicit declaration of function ‘gettimeofday’ 
> [-Werror=implicit-function-declaration]
>   628 | gettimeofday(, NULL);
>   | ^~~~
> radio.c: In function ‘select_radio’:
> radio.c:168:17: error: implicit declaration of function ‘capkey’ 
> [-Werror=implicit-function-declaration]
>   168 | temp1 = capkey("lsb", rp->modetab);
>   | ^~
> icom.c:637:33: error: implicit declaration of function ‘dtohex’ 
> [-Werror=implicit-function-declaration]
>   637 | dtohex(tm->tm_year + 1900,
>   | ^~
> radio.c: In function ‘readchan’:
> radio.c:329:17: error: implicit declaration of function ‘readvfo’ 
> [-Werror=implicit-function-declaration]
>   329 | return (readvfo(rp));
>   | ^~~
> icom.c:886:25: error: implicit declaration of function ‘emptyvfo’ 
> [-Werror=implicit-function-declaration]
>   886 | emptyvfo(cp);
>   | ^~~~
> icom.c:1002:32: error: implicit declaration of function ‘emptychan’; did you 
> mean ‘empty_chan’? [-Werror=implicit-function-declaration]
>  1002 | rval = emptychan(rp->ident, cp);
>   |^
>   |empty_chan
> icom.c:1171:33: error: implicit declaration of function ‘readvfo’ 
> [-Werror=implicit-function-declaration]
>  1171 | readvfo(rp);
>   | ^~~
> icom.c:1247:32: error: implicit declaration of function ‘readoffset’; did you 
> mean ‘loadoffset’? [-Werror=implicit-function-declaration]
>  1247 | rval = readoffset(rp->ident, );
>   |^~
>   |loadoffset
> icom.c:1627:17: error: implicit declaration of function ‘doublefreq’ 
> [-Werror=implicit-function-declaration]
>  1627 | doublefreq(dtemp * 10, s1, 2);
>   | ^~
> cc1: some warnings being treated as errors
> make[1]: *** [: radio.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/icom_20120228-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bug

Bug#1066485: volpack: FTBFS: scalevolume.c:63:9: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: volpack
Version: 1.0b3-9
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -I.. -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o denfile.o denfile.c
> scalevolume.c:42:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>42 | main(argc, argv)
>   | ^~~~
> scalevolume.c: In function ‘main’:
> scalevolume.c:63:9: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>63 | exit(1);
>   | ^~~~
> scalevolume.c:41:1: note: include ‘’ or provide a declaration of 
> ‘exit’
>40 | #include 
>   +++ |+#include 
>41 | 
> scalevolume.c:63:9: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>63 | exit(1);
>   | ^~~~
> scalevolume.c:63:9: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:72:14: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>72 | if (!strcmp(argv[6], "-b")) {
>   |  ^~
> scalevolume.c:41:1: note: include ‘’ or provide a declaration of 
> ‘strcmp’
>40 | #include 
>   +++ |+#include 
>41 | 
> scalevolume.c:84:13: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>84 | exit(1);
>   | ^~~~
> scalevolume.c:84:13: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:91:9: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>91 | exit(1);
>   | ^~~~
> scalevolume.c:91:9: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:101:9: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>   101 | exit(1);
>   | ^~~~
> scalevolume.c:101:9: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:109:9: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>   109 | exit(1);
>   | ^~~~
> scalevolume.c:109:9: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:113:10: error: implicit declaration of function ‘write_den’ 
> [-Werror=implicit-function-declaration]
>   113 | if (!write_den(dst_file, dst_volume, dst_xlen, dst_ylen, 
> dst_zlen))
>   |  ^
> scalevolume.c:114:9: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>   114 | exit(1);
>   | ^~~~
> scalevolume.c:114:9: note: include ‘’ or provide a declaration of 
> ‘exit’
> scalevolume.c:116:5: warning: incompatible implicit declaration of built-in 
> function ‘exit’ [-Wbuiltin-declaration-mismatch]
>   116 | exit(0);
>   | ^~~~
> scalevolume.c:116:5: note: include ‘’ or provide a declaration of 
> ‘exit’
> denfile.c: In function ‘read_den’:
> denfile.c:51:15: error: implicit declaration of function ‘open’; did you mean 
> ‘popen’? [-Werror=implicit-function-declaration]
>51 | if ((fd = open(filename, 0)) < 0) {
>   |   ^~~~
>   |   popen
> denfile.c:57:10: error: implicit declaration of function ‘read_shorts’ 
> [-Werror=implicit-function-declaration]
>57 | if (!read_shorts(fd, _version, 1, 0)) {
>   |  ^~~
> denfile.c:81:10: error: implicit declaration of function ‘read_words’ 
> [-Werror=implicit-function-declaration]
>81 | !read_words(fd, _length, 1, swapbytes)) {
>   |  ^~
> denfile.c:92:29: error: implicit declaration of function ‘malloc’ 
> [-Werror=implicit-function-declaration]
>92 | data = (unsigned char *)malloc(map_length);
>   | ^~
> denfile.c:9:1: note: include ‘’ or provide a declaration of ‘malloc’
> 8 | #include 
>   +++ |+#include 
> 9 | 
> denfile.c:92:29: warning: incompatible implicit declaration of built-in 
&

Bug#1066482: ngspice: FTBFS: ../../../../src/main.c:642:9: error: implicit declaration of function ‘get_local_home’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: ngspice
Version: 42+ds-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H   -I. -I../../../../src -I../src/include 
> -I../../../../src/include -I../../../../src/spicelib/devices  
> -I/usr/include/freetype2 -DSIMULATOR -Wdate-time -D_FORTIFY_SOURCE=2 -static 
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu11 -fopenmp -c -o ngspice-ngspice.o 
> `test -f 'ngspice.c' || echo '../../../../src/'`ngspice.c
> rm -f spinit spinit.tmp
> srcdir=''; \
>   test -f ./spinit.in || srcdir=../../../../src/; \
>   sed -e 's|@XSPICEINIT[@]||g' -e 
> 's|@pkglibdir[@]|/usr/lib/x86_64-linux-gnu/ngspice|g' ${srcdir}spinit.in 
> >spinit.tmp
> mv spinit.tmp spinit
> ../../../../src/main.c: In function ‘app_rl_init’:
> ../../../../src/main.c:642:9: error: implicit declaration of function 
> ‘get_local_home’ [-Werror=implicit-function-declaration]
>   642 | if (get_local_home(0, ) < 0)
>   | ^~
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:1341: ngspice-main.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/ngspice_42+ds-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066484: tcpxtract: FTBFS: confy.c:494:16: error: implicit declaration of function ‘yylex’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: tcpxtract
Version: 1.0.1-17
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"tcpxtract\" -DVERSION=\"1.0.1\" -DYYTEXT_POINTER=1 
> -DHAVE_LIBPCAP=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -I.   -Wdate-time 
> -D_FORTIFY_SOURCE=2 -D_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection 
> -DDEFAULT_CONFIG_FILE=\"/etc/tcpxtract.conf\" -c -o extract.o extract.c
> confy.c: In function ‘yyparse’:
> confy.c:494:16: error: implicit declaration of function ‘yylex’ 
> [-Werror=implicit-function-declaration]
>   494 | # define YYLEX yylex ()
>   |^
> confy.c:950:16: note: in expansion of macro ‘YYLEX’
>   950 |   yychar = YYLEX;
>   |^
> confy.c:1188:9: error: implicit declaration of function ‘yyerror’; did you 
> mean ‘yyerrok’? [-Werror=implicit-function-declaration]
>  1188 | yyerror ("syntax error");
>   | ^~~
>   | yyerrok
> confy.y: At top level:
> confy.y:58:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>58 | yyerror(char *s)
>   | ^~~
> confl.l: In function ‘yylex’:
> confl.l:28:47: error: implicit declaration of function ‘strdup’ 
> [-Werror=implicit-function-declaration]
>28 | [0-9]+  {yylval.string = 
> strdup(yytext); return NUMBER;}
>   |   ^~
> confl.l:28:47: warning: incompatible implicit declaration of built-in 
> function ‘strdup’ [-Wbuiltin-declaration-mismatch]
> confl.l:29:18: warning: incompatible implicit declaration of built-in 
> function ‘strdup’ [-Wbuiltin-declaration-mismatch]
>29 | [a-zA-Z][a-zA-Z0-9]*{yylval.string = strdup(yytext); return WORD;}
>   |  ^
> confl.l:30:32: warning: incompatible implicit declaration of built-in 
> function ‘strdup’ [-Wbuiltin-declaration-mismatch]
>30 | [a-zA-Z0-9\\\?]+{yylval.string = strdup(yytext); 
> return SPECIFIER;}
>   | ^
> In file included from /usr/include/inttypes.h:25,
>  from /usr/include/pcap/pcap-inttypes.h:98,
>  from /usr/include/pcap/pcap.h:117,
>  from /usr/include/pcap.h:43,
>  from tcpxtract.c:25:
> /usr/include/features.h:195:3: warning: #warning "_BSD_SOURCE and 
> _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]
>   195 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
> _DEFAULT_SOURCE"
>   |   ^~~
> tcpxtract.c: In function ‘main’:
> tcpxtract.c:312:5: error: implicit declaration of function ‘yyparse’ 
> [-Werror=implicit-function-declaration]
>   312 | yyparse();
>   | ^~~
> tcpxtract.c:320:9: warning: ‘pcap_lookupdev’ is deprecated: use 
> 'pcap_findalldevs' and use the first device [-Wdeprecated-declarations]
>   320 | dev = pcap_lookupdev(errbuf);
>   | ^~~
> /usr/include/pcap/pcap.h:395:18: note: declared here
>   395 | PCAP_API char   *pcap_lookupdev(char *);
>   |  ^~
> tcpxtract.c:355:25: warning: format ‘%s’ expects argument of type ‘char *’, 
> but argument 3 has type ‘struct bpf_program’ [-Wformat=]
>   355 | fprintf(stderr, "Couldn't parse filter %s: %s\n", filter, 
> pcap_geterr(handle));
>   | ^~~~  ~~
>   |   |
>   |   struct 
> bpf_program
> tcpxtract.c:359:25: warning: format ‘%s’ expects argument of type ‘char *’, 
> but argument 3 has type ‘struct bpf_program’ [-Wformat=]
>   359 | fprintf(stderr, "Couldn'

Bug#1066483: scrollz: FTBFS: configure: error: Fatal: You must get working getaddrinfo() function.

2024-03-13 Thread Lucas Nussbaum
Source: scrollz
Version: 2.2.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> checking whether to support SOCKS5... no
> checking whether to support SOCKS4... no
> checking whether to enable ipv6... yes
> checking ipv6 stack type... linux-glibc
> checking getaddrinfo bug... buggy
> configure: error: Fatal: You must get working getaddrinfo() function.
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/scrollz_2.2.3-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066478: readseq: FTBFS: readseq.c:801:5: error: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: readseq
Version: 1-14
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc   -o readseq -I/usr/include/ncbi  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -g -O2 -DNCBI -I/usr/include/ncbi 
> -DARB readseq.c ureadseq.c ureadasn.c -lncbi -lncbiobj -lncbicdr -lncbiacc 
> -lncbitool -lncbimmdb -lncbiid1 -lnetcli -lm -Wl,-z,relro -Wl,-z,now
> readseq.c: In function ‘formatstr’:
> readseq.c:267:41: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   267 |   case kASNseqset   : return formats[kASN1-1];
>   |  ~~~^
> readseq.c:269:45: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   269 |   case kPhylipSequential: return formats[kPhylip-1];
>   |  ~~~^~~
> readseq.c:273:22: warning: return discards ‘const’ qualifier from pointer 
> target type [-Wdiscarded-qualifiers]
>   273 |   else return formats[format-1];
>   |   ~~~^~
> readseq.c: In function ‘Nlm_Main’:
> readseq.c:801:5: error: implicit declaration of function ‘gets’; did you mean 
> ‘fgets’? [-Werror=implicit-function-declaration]
>   801 | gets(oname= onamestore);
>   | ^~~~
>   | fgets
> readseq.c:936:33: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 4 has type ‘long int’ [-Wformat=]
>   936 | sprintf( stemp,"%s_%d", oname, whichSeq);
>   |~^  
>   | |  |
>   | intlong int
>   |%ld
> readseq.c:938:48: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 3 has type ‘long int’ [-Wformat=]
>   938 | fprintf( stderr,"Writing sequence %d to file %s\n", 
> whichSeq, stemp);
>   |   ~^
> 
>   |||
>   |int  long 
> int
>   |   %ld
> readseq.c:980:39: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 3 has type ‘long int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |  ~^
>   |   |
>   |   int
>   |  %ld
>   981 | whichSeq, seqlen, checksum, formatstr(format), 
> seqidptr);
>   |    
>   | |
>   | long int
> readseq.c:980:51: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 4 has type ‘long int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |  ~^
>   |   |
>   |   int
>   |  %ld
>   981 | whichSeq, seqlen, checksum, formatstr(format), 
> seqidptr);
>   |   ~~   
>   |   |
>   |   long int
> readseq.c:980:65: warning: format ‘%X’ expects argument of type ‘unsigned 
> int’, but argument 5 has type ‘long unsigned int’ [-Wformat=]
>   980 |   fprintf( stderr, "Sequence %d, length= %d, checksum= %X, 
> format= %s, id= %s\n",
>   |~^
>   | |
>   | 
> unsigned int
>   |   

Bug#1066481: trueprint: FTBFS: language.c:134:3: error: implicit declaration of function ‘dm’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: trueprint
Version: 5.4-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o language.o language.c
> language.c: In function ‘filename_to_language’:
> language.c:134:3: error: implicit declaration of function ‘dm’ 
> [-Werror=implicit-function-declaration]
>   134 |   dm('l',2,"Finding language for filename %s\n",filename);
>   |   ^~
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o lang_pike.o lang_pike.c
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o print_prompt.o print_prompt.c
> lang_pike.c: In function ‘is_pike_reserved_word’:
> lang_pike.c:61:7: error: implicit declaration of function ‘strcmp’ 
> [-Werror=implicit-function-declaration]
>61 |  (strcmp(fn_name,"if")==0) ||
>   |   ^~
> lang_pike.c:22:1: note: include ‘’ or provide a declaration of 
> ‘strcmp’
>21 | #include "lang_pike.h"
>   +++ |+#include 
>22 | 
> gcc -DHAVE_CONFIG_H -I. -I.. -I.. -I..  -Wdate-time -D_FORTIFY_SOURCE=2 
> -DPRINTERS_FILE=\"/etc/trueprint/printers\" -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o expand_str.o expand_str.c
> print_prompt.c: In function ‘print_prompt’:
> print_prompt.c:121:11: warning: ignoring return value of ‘fgets’ declared 
> with attribute ‘warn_unused_result’ [-Wunused-result]
>   121 |   fgets(response,INPUT_LINE_LEN-1,stdin);
>   |   ^~
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:463: language.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/trueprint_5.4-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066480: cyrus-imspd: FTBFS: main.c:127:10: error: implicit declaration of function ‘setsid’; did you mean ‘setbit’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: cyrus-imspd
Version: 1.8-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -c -I.. -I. -I. -I./../lib -I/usr/local/include -Wdate-time 
> -D_FORTIFY_SOURCE=2  -DHAVE_CONFIG_H -DSETPROCTITLE  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection \
> main.c
> main.c: In function ‘start_server’:
> main.c:127:10: error: implicit declaration of function ‘setsid’; did you mean 
> ‘setbit’? [-Werror=implicit-function-declaration]
>   127 | (setsid((pid_t)0) < 0)) {
>   |  ^~
>   |  setbit
> main.c:165:9: error: implicit declaration of function ‘sleep’ 
> [-Werror=implicit-function-declaration]
>   165 | sleep(1);
>   | ^
> main.c:187:17: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>   187 |   pid = fork();
>   | ^~~~
> main.c:189:20: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   189 | (void) close(sock);
>   |^
>   |pclose
> main.c:197:20: error: implicit declaration of function ‘write’; did you mean 
> ‘fwrite’? [-Werror=implicit-function-declaration]
>   197 | (void) write(newfd, msg_forkfailed, sizeof 
> (msg_forkfailed));
>   |^
>   |fwrite
> main.c: In function ‘main’:
> main.c:216:12: warning: type defaults to ‘int’ in declaration of ‘optind’ 
> [-Wimplicit-int]
>   216 | extern optind;
>   |^~
> main.c:221:17: error: implicit declaration of function ‘getopt’; did you mean 
> ‘getsubopt’? [-Werror=implicit-function-declaration]
>   221 | while ((c = getopt(argc, argv, "dp:")) != EOF) {
>   | ^~
>   | getsubopt
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:75: main.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/cyrus-imspd_1.8-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066479: opendnssec: FTBFS: ../../common/scheduler/task.c:137:25: error: implicit declaration of function ‘clamp’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: opendnssec
Version: 1:2.1.13-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I../../common  -I/usr/include -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -pedantic -DSQLITE3_SONAME=\"libsqlite3.so.0\" -pedantic -rdynamic -c 
> -o scheduler/worker.o ../../common/scheduler/worker.c
> ../../common/cmdhandler.c: In function ‘cmdhandler_accept_client’:
> ../../common/cmdhandler.c:386:9: warning: unused variable ‘err’ 
> [-Wunused-variable]
>   386 | int err;
>   | ^~~
> ../../common/cmdhandler.c: In function ‘cmdhandler_start’:
> ../../common/cmdhandler.c:509:13: warning: unused variable ‘i’ 
> [-Wunused-variable]
>   509 | ssize_t i;
>   | ^
> ../../common/cmdhandler.c: In function ‘self_pipe_trick’:
> ../../common/cmdhandler.c:596:35: warning: zero-length gnu_printf format 
> string [-Wformat-zero-length]
>   596 | client_printf(sockfd, "");
>   |   ^~
> ../../common/cmdhandler.c: In function ‘cmdhandler_perform_command’:
> ../../common/cmdhandler.c:173:13: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   173 | asprintf(, "unknown generic arguments");
>   | ^
> ../../common/cmdhandler.c:202:17: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   202 | asprintf(, "memory error");
>   | ^~~~
> ../../common/cmdhandler.c:209:21: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   209 | asprintf(, "Error parsing arguments %s 
> command line %s", command->name, arg);
>   | 
> ^~
> ../../common/cmdhandler.c:232:25: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   232 | asprintf(, "no help for command  
> %s.", arg);
>   | 
> ^
> ../../common/cmdhandler.c:246:13: warning: ignoring return value of 
> ‘asprintf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
>   246 | asprintf(, "Unknown command %s.", arg);
>   | ^~~~
> ../../common/scheduler/schedule.c: In function ‘schedule_get_first_task’:
> ../../common/scheduler/schedule.c:81:20: warning: unused variable ‘node’ 
> [-Wunused-variable]
>81 | ldns_rbnode_t* node = LDNS_RBTREE_NULL;
>   |^~~~
> ../../common/scheduler/task.c: In function ‘task_perform’:
> ../../common/scheduler/task.c:137:25: error: implicit declaration of function 
> ‘clamp’ [-Werror=implicit-function-declaration]
>   137 | task->backoff = clamp(task->backoff * 2, 60, 
> ODS_SE_MAX_BACKOFF);
>   | ^
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:601: scheduler/task.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/opendnssec_2.1.13-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066477: setserial: FTBFS: pcmcia.c:93:10: error: implicit declaration of function ‘waitpid’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: setserial
Version: 2.17-53
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -O2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -DHAVE_ASM_IOCTLS_H=1  -I. 
> setserial.c -o setserial
> In file included from setserial.c:18:
> pcmcia.c: In function ‘pcmcia_check_cardctl’:
> pcmcia.c:93:10: error: implicit declaration of function ‘waitpid’ 
> [-Werror=implicit-function-declaration]
>93 |  if (waitpid(pid, , 0) == -1) {
>   |  ^~~
> setserial.c: In function ‘print_multiport’:
> setserial.c:238:13: error: implicit declaration of function ‘ioctl’ 
> [-Werror=implicit-function-declaration]
>   238 | if (ioctl(fd, TIOCSERGETMULTI, ) < 0)
>   | ^
> setserial.c: At top level:
> setserial.c:766:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
>   766 | main(int argc, char **argv)
>   | ^~~~
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:26: setserial] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/setserial_2.17-53_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066476: conntrack-tools: FTBFS: configure: error: Package requirements (libtirpc) were not met

2024-03-13 Thread Lucas Nussbaum
Source: conntrack-tools
Version: 1:1.4.8-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> checking for byacc... no
> checking for pkg-config... /usr/bin/pkg-config
> checking pkg-config is at least version 0.9.0... yes
> checking for rpc/rpc_msg.h... no
> checking for libtirpc... no
> configure: error: Package requirements (libtirpc) were not met
> 
> Package 'libtirpc', required by 'virtual:world', not found
> 
> Consider adjusting the PKG_CONFIG_PATH environment variable if you
> installed software in a non-standard prefix.
> 
> Alternatively, you may set the environment variables LIBTIRPC_CFLAGS
> and LIBTIRPC_LIBS to avoid the need to call pkg-config.
> See the pkg-config man page for more details.
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/conntrack-tools_1.4.8-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066475: libpsortb: FTBFS: debug_funcs.c:320:38: error: implicit declaration of function ‘get_mtx_index’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: libpsortb
Version: 1.0+dfsg-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  
>  -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o std_funcs.lo std_funcs.c
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> debug_funcs.c  -fPIC -DPIC -o .libs/debug_funcs.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readseqs_multialpha.c  -fPIC -DPIC -o .libs/readseqs_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readhmm.c  -fPIC -DPIC -o .libs/readhmm.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> hmmsearch.c  -fPIC -DPIC -o .libs/hmmsearch.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> std_calculation_funcs.c  -fPIC -DPIC -o .libs/std_calculation_funcs.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> readhmm_multialpha.c  -fPIC -DPIC -o .libs/readhmm_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> core_algorithms_multialpha.c  -fPIC -DPIC -o 
> .libs/core_algorithms_multialpha.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -Wdate-time 
> -D_FORTIFY_SOURCE=2 -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> std_funcs.c  -fPIC -DPIC -o .libs/std_funcs.o
> debug_funcs.c: In function ‘dump_viterbi_path’:
> debug_funcs.c:320:38: error: implicit declaration of function ‘get_mtx_index’ 
> [-Werror=implicit-function-declaration]
>   320 | dump_viterbi_path(viterbi_mtxp + get_mtx_index(row-1, cur->prev, 
> row_size), hmmp,
>   |  ^
> debug_funcs.c: In function ‘dump_replacement_letters’:
> debug_funcs.c:861:14: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’ [-Wformat=]
>   861 | printf("%c ", (*(replacement_letters->letters + i)));
>   | ~^~
>   |  | |
>   |  int   struct letter_s
> debug_funcs.c: In function ‘dump_replacement_letters_multi’:
> debug_funcs.c:915:16: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’ [-Wformat=]
>   915 |   printf("%c ", (*(replacement_letters->letters_1 + i)));
>   |   ~^~~~
>   || |
>   |int   struct letter_s
> debug_funcs.c:918:16: warning: format ‘%c’ expects argument of type ‘int’, 
> but argument 2 has type ‘struct letter_s’

Bug#1066473: multitail: FTBFS: mt.c:707:25: error: implicit declaration of function ‘waddnwstr’; did you mean ‘waddnstr’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: multitail
Version: 6.5.0-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> cc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wall -Wno-unused-parameter -funsigned-char -O3 -DLinux -DVERSION=\"6.5.0\" 
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DCONFIG_FILE=\"/etc/multitail.conf\" -MMD -MP -DUTF8_SUPPORT  -c -o mt.o mt.c
> mt.c: In function ‘do_color_print’:
> mt.c:707:25: error: implicit declaration of function ‘waddnwstr’; did you 
> mean ‘waddnstr’? [-Werror=implicit-function-declaration]
>   707 | waddnwstr(win -> win, , 1);
>   | ^
>   | waddnstr
> mt.c: In function ‘update_statusline’:
> mt.c:1467:126: warning: format ‘%lld’ expects argument of type ‘long long 
> int’, but argument 5 has type ‘off64_t’ {aka ‘long int’} [-Wformat=]
>  1467 | mvwprintw(status -> 
> win, 0, win_width - (strlen(timestamp) + cur_len), "%10lld - %s", fsize, 
> timestamp);
>   |   
>   ~^~
>   |   
>||
>   |   
>|off64_t {aka 
> long int}
>   |   
>long long int
>   |   
>   %10ld
> cc1: some warnings being treated as errors
> make[2]: *** [: mt.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/multitail_6.5.0-5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066474: freedroid: FTBFS: init.c:937:3: error: implicit declaration of function ‘Load_Fonts’; did you mean ‘LoadFont’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: freedroid
Version: 1.0.2+cvs040112-7
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o influ.o 
> influ.c
> init.c: In function ‘InitFreedroid’:
> init.c:937:3: error: implicit declaration of function ‘Load_Fonts’; did you 
> mean ‘LoadFont’? [-Werror=implicit-function-declaration]
>   937 |   Load_Fonts (); // we need this for progress-meter!
>   |   ^~
>   |   LoadFont
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o misc.o misc.c
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection  -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT  -DFD_DATADIR='"/usr/share/games/freedroid"' -c -o text.o text.c
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:428: init.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/freedroid_1.0.2+cvs040112-7_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066472: pullseq: FTBFS: pull_by_re.c:76:29: error: implicit declaration of function ‘search_header’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: pullseq
Version: 1.0.2-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o pull_by_size.o 
> pull_by_size.c
> pull_by_re.c: In function ‘pull_by_re’:
> pull_by_re.c:76:29: error: implicit declaration of function ‘search_header’ 
> [-Werror=implicit-function-declaration]
>76 | if (search_header(re, seq->name.s) || 
> search_header(re, seq->comment.s))
>   | ^
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o pullseq.o pullseq.c
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o cmpseq.o cmpseq.c
> pullseq.c: In function ‘main’:
> pullseq.c:275:25: error: implicit declaration of function ‘pull_by_re’; did 
> you mean ‘pull_by_size’? [-Werror=implicit-function-declaration]
>   275 | count = pull_by_re(in, aStrRegex, min, max, length, 
> exclude, convert, just_count);
>   | ^~
>   | pull_by_size
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o seqdiff.o seqdiff.c
> gcc -DHAVE_CONFIG_H -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -fcommon -c -o seqdiff_results.o 
> seqdiff_results.c
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:413: pull_by_re.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/pullseq_1.0.2-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066468: searchmonkey: FTBFS: callbacks.c:195:11: error: implicit declaration of function ‘clearComboBox2’; did you mean ‘clearComboBox’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: searchmonkey
Version: 0.8.3-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -DPACKAGE_DATA_DIR=\""/usr/share"\" 
> -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" -I/usr/include/poppler/glib 
> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include 
> -I/usr/include/cairo -I/usr/include/libpng16 -I/usr/include/freetype2 
> -I/usr/include/pixman-1 -I/usr/include/poppler -I/usr/include/gtk-2.0 
> -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/pango-1.0 
> -I/usr/include/harfbuzz -I/usr/include/libmount -I/usr/include/blkid 
> -I/usr/include/fribidi -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o callbacks.o callbacks.c
> In file included from /usr/include/gtk-2.0/gtk/gtkobject.h:37,
>  from /usr/include/gtk-2.0/gtk/gtkwidget.h:36,
>  from /usr/include/gtk-2.0/gtk/gtkcontainer.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkbin.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkwindow.h:36,
>  from /usr/include/gtk-2.0/gtk/gtkdialog.h:35,
>  from /usr/include/gtk-2.0/gtk/gtkaboutdialog.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:33,
>  from callbacks.c:5:
> /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: warning: ‘GTypeDebugFlags’ is 
> deprecated [-Wdeprecated-declarations]
>   236 | voidgtk_type_init   (GTypeDebugFlagsdebug_flags);
>   | ^~~~
> In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
>  from /usr/include/glib-2.0/gobject/gbinding.h:31,
>  from /usr/include/glib-2.0/glib-object.h:24,
>  from /usr/include/glib-2.0/gio/gioenums.h:30,
>  from /usr/include/glib-2.0/gio/giotypes.h:30,
>  from /usr/include/glib-2.0/gio/gio.h:28,
>  from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
>  from /usr/include/gtk-2.0/gdk/gdk.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32:
> /usr/include/glib-2.0/gobject/gtype.h:723:1: note: declared here
>   723 | {
>   | ^
> In file included from /usr/include/gtk-2.0/gtk/gtktoolitem.h:31,
>  from /usr/include/gtk-2.0/gtk/gtktoolbutton.h:30,
>  from /usr/include/gtk-2.0/gtk/gtkmenutoolbutton.h:30,
>  from /usr/include/gtk-2.0/gtk/gtk.h:126:
> /usr/include/gtk-2.0/gtk/gtktooltips.h:73:3: warning: ‘GTimeVal’ is 
> deprecated: Use 'GDateTime' instead [-Wdeprecated-declarations]
>73 |   GTimeVal last_popdown;
>   |   ^~~~
> In file included from /usr/include/glib-2.0/glib/galloca.h:34,
>  from /usr/include/glib-2.0/glib.h:32,
>  from /usr/include/glib-2.0/gobject/gbinding.h:30:
> /usr/include/glib-2.0/glib/gtypes.h:580:8: note: declared here
>   580 | struct _GTimeVal
>   |^
> callbacks.c: In function ‘on_cl_ear_history1_activate’:
> callbacks.c:195:11: error: implicit declaration of function ‘clearComboBox2’; 
> did you mean ‘clearComboBox’? [-Werror=implicit-function-declaration]
>   195 |   clearComboBox2(lookup_widget(GTK_WIDGET(menuitem), 
> "fileName"));
>   |   ^~
>   |   clearComboBox
> In file included from support.h:15,
>  from callbacks.c:11:
> callbacks.c: In function ‘on_online_release_notes1_activate’:
> callbacks.c:1162:38: warning: format ‘%G’ expects argument of type ‘double’, 
> but argument 2 has type ‘char *’ [-Wformat=]
>  1162 |   gchar *website = 
> g_strdup_printf(_("https://sourceforge.net/projects/searchmonkey/files/gSearchmonkey%20GTK%20%28Gnome%29/0.8.2%20%5Bstable%5D/;),
>  PACKAGE, VERSION);
>   |  
> ^
> callbacks.c:1162:36: note: in expansion of macro ‘_’
>  1162 |   gchar *website = 
> g_strdup

Bug#1066471: sbox-dtc: FTBFS: env.c:46:25: error: implicit declaration of function ‘strchr’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: sbox-dtc
Version: 1.11.7-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -O 
> -g -DVERSION=1.11 -Wdate-time -D_FORTIFY_SOURCE=2  -c -o env.o env.c
> env.c: In function ‘main’:
> env.c:46:25: error: implicit declaration of function ‘strchr’ 
> [-Werror=implicit-function-declaration]
>46 | delimiter = (char*) strchr(name,'=');
>   | ^~
> env.c:6:1: note: include ‘’ or provide a declaration of ‘strchr’
> 5 | #include 
>   +++ |+#include 
> 6 | 
> env.c:46:25: warning: incompatible implicit declaration of built-in function 
> ‘strchr’ [-Wbuiltin-declaration-mismatch]
>46 | delimiter = (char*) strchr(name,'=');
>   | ^~
> env.c:46:25: note: include ‘’ or provide a declaration of ‘strchr’
> env.c:49:5: error: implicit declaration of function ‘strncpy’ 
> [-Werror=implicit-function-declaration]
>49 | strncpy(nm,name,delimiter-name);
>   | ^~~
> env.c:49:5: note: include ‘’ or provide a declaration of ‘strncpy’
> env.c:49:5: warning: incompatible implicit declaration of built-in function 
> ‘strncpy’ [-Wbuiltin-declaration-mismatch]
> env.c:49:5: note: include ‘’ or provide a declaration of ‘strncpy’
> cc1: some warnings being treated as errors
> make[1]: *** [: env.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/sbox-dtc_1.11.7-1.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066470: kxl: FTBFS: KXLsound.c:75:9: error: implicit declaration of function 'read'; did you mean 'fread'? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: kxl
Version: 1.1.7-17
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
>  gcc -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"KXL\" 
> -DVERSION=\"1.1.7\" -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
> -DHAVE_FCNTL_H=1 -DHAVE_MALLOC_H=1 -DHAVE_SYS_IOCTL_H=1 -DHAVE_SYS_TIME_H=1 
> -DHAVE_LINUX_JOYSTICK_H=1 -DHAVE_LINUX_SOUNDCARD_H=1 -DTIME_WITH_SYS_TIME=1 
> -DRETSIGTYPE=void -DHAVE_SELECT=1 -I. -I. -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> KXLjoystick.c  -fPIC -DPIC -o .libs/KXLjoystick.o
> KXLmisc.c: In function 'KXL_ReadU16':
> KXLmisc.c:196:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   196 |   fread(c, 1, 2, fp);
>   |   ^~
> KXLmisc.c: In function 'KXL_ReadU32':
> KXLmisc.c:209:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   209 |   fread(c, 1, 4, fp);
>   |   ^~
> KXLsound.c: In function 'KXL_SoundServer':
> KXLsound.c:75:9: error: implicit declaration of function 'read'; did you mean 
> 'fread'? [-Werror=implicit-function-declaration]
>75 | if (read(KXL_SoundData.Pipe[0], ,sizeof(Command)) != 
> sizeof(Command))
>   | ^~~~
>   | fread
> KXLsound.c:165:9: error: implicit declaration of function 'write'; did you 
> mean 'fwrite'? [-Werror=implicit-function-declaration]
>   165 | write(KXL_SoundData.Device, KXL_SoundData.PBuff, 
> fragment_size);
>   | ^
>   | fwrite
> KXLimage.c: In function 'KXL_ReadBitmapHeader':
> KXLimage.c:112:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   112 |   fread(hed->magic, 1, 2, fp);
>   |   ^~~
> KXLimage.c:166:7: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   166 |   fread(&(hed->data[i * hed->w]), hed->w, 1, fp);
>   |   ^~
> KXLsound.c: In function 'KXL_InitSound':
> KXLsound.c:262:7: error: implicit declaration of function 'pipe' 
> [-Werror=implicit-function-declaration]
>   262 |   if (pipe(KXL_SoundData.Pipe) < 0) {
>   |   ^~~~
> KXLsound.c:267:27: error: implicit declaration of function 'fork' 
> [-Werror=implicit-function-declaration]
>   267 |   if ((KXL_SoundData.ID = fork()) < 0) {
>   |   ^~~~
> KXLsound.c:273:5: error: implicit declaration of function 'close'; did you 
> mean 'pclose'? [-Werror=implicit-function-declaration]
>   273 | close(KXL_SoundData.Pipe[1]);
>   | ^
>   | pclose
> KXLsound.c: In function 'KXL_LoadSound':
> KXLsound.c:213:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   213 |   fread(dummy, sizeof(Uint8), 40, file);
>   |   ^
> KXLsound.c:216:3: warning: ignoring return value of 'fread' declared with 
> attribute 'warn_unused_result' [-Wunused-result]
>   216 |   fread(new.Data, sizeof(Uint8), new.Length, file);
>   |   ^~~~
> KXLjoystick.c: In function 'KXL_CloseJoystick':
> KXLjoystick.c:43:5: error: implicit declaration of function 'close'; did you 
> mean 'pclose'? [-Werror=implicit-function-declaration]
>43 | close(KXL_joydev);
>   | ^
>   | pclose
> KXLjoystick.c: In function 'KXL_ReadJoystick':
> KXLjoystick.c:55:9: error: implicit declaration of function 'read'; did you 
> mean 'fread'? [-Werror=implicit-function-declaration]
>55 | if (read(KXL_joydev, my, JS_RETURN) == JS_RETURN) {
>   | ^~~~
>   | fread
>  gcc -DPACKAGE_NAME=\"\" -

Bug#1066469: tack: FTBFS: configure: error: No curses header-files found

2024-03-13 Thread Lucas Nussbaum
Source: tack
Version: 1.08-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> configure: WARNING: pkg-config is not installed
> checking for specific curses-directory... no
> checking for specified curses library type... curses
> checking for extra include directories... no
> checking if we have identified curses headers... none
> configure: error: No curses header-files found
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/tack_1.08-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066467: opensmtpd-extras: FTBFS: configure: error: *** compiler cannot create working executables, check config.log ***

2024-03-13 Thread Lucas Nussbaum
Source: opensmtpd-extras
Version: 6.7.1-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> checking for syslog.h... yes
> checking for time.h... yes
> checking for ucred.h... no
> checking for unistd.h... (cached) yes
> checking compiler and flags for sanity... no
> configure: error: *** compiler cannot create working executables, check 
> config.log ***
>   tail -v -n \+0 config.log


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/opensmtpd-extras_6.7.1-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066466: rlinetd: FTBFS: ../../src/cleanups.c:27:49: error: implicit declaration of function ‘pmap_unset’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: rlinetd
Version: 0.9.3-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=link 
> /<>/debian/gcc-wrapper gcc -I../.. -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wall -Wextra  -Wwrite-strings 
> -Wcast-qual -Wbad-function-cast -Wpointer-arith -Wmissing-prototypes 
> -Wstrict-prototypes -Wmissing-declarations -Wnested-externs -Wcast-align 
> -Winline -Wshadow -Wredundant-decls -export-dynamic -Wl,-z,relro -Wl,-z,now 
> -o rlinetd buffer.o bytecode.o connect.o db.o error.o engine.o main.o stack.o 
> strings.o signals.o -ldl  ../port/libport.a -lcap
> ../../src/cleanups.c: In function ‘rlp_cleanup’:
> ../../src/cleanups.c:27:49: error: implicit declaration of function 
> ‘pmap_unset’ [-Werror=implicit-function-declaration]
>27 | 
> pmap_unset(rlcu->prog, nl->num);
>   | ^~
> ../../src/cleanups.c:27:49: warning: nested extern declaration of 
> ‘pmap_unset’ [-Wnested-externs]
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:603: cleanups.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rlinetd_0.9.3-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066464: liece: FTBFS: dcc.c:128:7: error: implicit declaration of function ‘sleep’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: liece
Version: 2.0+0.20030527cvs-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -I. -I.. -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"liece\" -DVERSION=\"2.0.0\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 
> -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 
> -DHAVE_SYS_SELECT_H=1 -DHAVE_LIBGEN_H=1 -DHAVE_STRTOUL=1 -DHAVE_MEMMOVE=1 
> -DHAVE_GETADDRINFO=1 -DHAVE_BASENAME=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  
> -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o dcc.o dcc.c
> dcc.c: In function ‘prepare_listen_port’:
> dcc.c:128:7: error: implicit declaration of function ‘sleep’ 
> [-Werror=implicit-function-declaration]
>   128 |   sleep (20);   /* wait 20 seconds and try again */
>   |   ^
> dcc.c: In function ‘get_address_externally’:
> dcc.c:163:3: error: implicit declaration of function ‘close’; did you mean 
> ‘pclose’? [-Werror=implicit-function-declaration]
>   163 |   close(dummy);
>   |   ^
>   |   pclose
> dcc.c: In function ‘send_file’:
> dcc.c:189:3: error: implicit declaration of function ‘gethostname’; did you 
> mean ‘gethostbyname’? [-Werror=implicit-function-declaration]
>   189 |   gethostname(namebuf, sizeof (namebuf));
>   |   ^~~
>   |   gethostbyname
> dcc.c:205:34: warning: format ‘%u’ expects argument of type ‘unsigned int’, 
> but argument 4 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=]
>   205 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, 
> statbuf.st_size);
>   | ~^ 
>   |  | |
>   |  unsigned int  u_long {aka 
> long unsigned int}
>   | %lu
> dcc.c:205:37: warning: format ‘%d’ expects argument of type ‘int’, but 
> argument 5 has type ‘__off_t’ {aka ‘long int’} [-Wformat=]
>   205 | printf ("DCC send %s %d %u %d\n", ifile, port, addr, 
> statbuf.st_size);
>   |~^
> ~~~
>   | |   |
>   | int 
> __off_t {aka long int}
>   |%ld
> dcc.c:209:17: error: implicit declaration of function ‘read’; did you mean 
> ‘fread’? [-Werror=implicit-function-declaration]
>   209 |   while ((len = read (ifd, buf, sizeof (buf))) > 0) {
>   | ^~~~
>   | fread
> dcc.c:210:5: error: implicit declaration of function ‘write’; did you mean 
> ‘fwrite’? [-Werror=implicit-function-declaration]
>   210 | write (ofd, buf, len);
>   | ^
>   | fwrite
> dcc.c: In function ‘receive_file’:
> dcc.c:245:5: error: implicit declaration of function ‘lseek’; did you mean 
> ‘fseek’? [-Werror=implicit-function-declaration]
>   245 | lseek (ifd, 0, 2);
>   | ^
>   | fseek
> dcc.c: In function ‘primary_address_of’:
> dcc.c:342:12: error: implicit declaration of function ‘inet_addr’ 
> [-Werror=implicit-function-declaration]
>   342 | addr = inet_addr(host);
>   |^
> dcc.c: In function ‘chat_listen’:
> dcc.c:370:27: warning: format ‘%u’ expects argument of type ‘unsigned int’, 
> but argument 2 has type ‘u_long’ {aka ‘long unsigned int’} [-Wformat=]
>   370 | printf("DCC chat %u %d\n", addr, port);
>   |  ~^
>   |   ||
>   |  

Bug#1066465: dcraw: FTBFS: fujiturn.c:76:37: error: implicit declaration of function ‘ntohs’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dcraw
Version: 9.28-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DPACKAGE_NAME=\"dcraw\" -DPACKAGE_TARNAME=\"dcraw\" 
> -DPACKAGE_VERSION=\"9.28\" -DPACKAGE_STRING=\"dcraw\ 9.28\" 
> -DPACKAGE_BUGREPORT=\"hr...@physics.muni.cz\" -DPACKAGE_URL=\"\" 
> -DPACKAGE=\"dcraw\" -DVERSION=\"9.28\" -DHAVE_LIBM=1 -DHAVE_STDIO_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
> -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 
> -DSTDC_HEADERS=1 -DHAVE_JPEGLIB_H=1 -DHAVE_LIBJPEG=1 -DHAVE_LCMS2_H=1 
> -DHAVE_LIBLCMS2=1 -I.   -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -O4 -c -o clean_crw.o clean_crw.c
> fujiturn.c: In function ‘main’:
> fujiturn.c:61:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>61 |   fread (in, iwide, sizeof *in, ifp);
>   |   ^~
> fujiturn.c:78:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>78 | fread (in, iwide, sizeof *in, ifp);
>   | ^~
> fujiturn.c: In function ‘main’:
> fujiturn.c:76:37: error: implicit declaration of function ‘ntohs’ 
> [-Werror=implicit-function-declaration]
>76 |   mid[orow*owide+ocol][i] = ntohs(in[icol][i]);
>   | ^
> fujiturn.c:90:28: error: implicit declaration of function ‘htons’ 
> [-Werror=implicit-function-declaration]
>90 | out[ocol][i] = htons (
>   |^
> fujiturn.c:61:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>61 |   fread (in, iwide, sizeof *in, ifp);
>   |   ^~
> fujiturn.c:78:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>78 | fread (in, iwide, sizeof *in, ifp);
>   | ^~
> clean_crw.c: In function ‘main’:
> clean_crw.c:54:5: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>54 | fread (buffer, 1, size, fp);
>   | ^~~
> fuji_green.c: In function ‘read_shorts’:
> fuji_green.c:72:29: error: implicit declaration of function ‘ntohs’ 
> [-Werror=implicit-function-declaration]
>72 |   if ((order == 0x4949) == (ntohs(0x1234) == 0x1234))
>   | ^
> fuji_green.c:73:5: error: implicit declaration of function ‘swab’ 
> [-Werror=implicit-function-declaration]
>73 | swab (pixel, pixel, count*2);
>   | ^~~~
> fuji_green.c: In function ‘write_psd’:
> fuji_green.c:249:11: error: implicit declaration of function ‘htonl’ 
> [-Werror=implicit-function-declaration]
>   249 |   hw[0] = htonl(height*2);  /* write the header */
>   |   ^
> fuji_green.c: In function ‘main’:
> fuji_green.c:307:9: error: implicit declaration of function ‘isatty’ 
> [-Werror=implicit-function-declaration]
>   307 | if (isatty(1)) {
>   | ^~
> fuji_green.c: In function ‘read_shorts’:
> fuji_green.c:71:3: warning: ignoring return value of ‘fread’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>71 |   fread (pixel, 2, count, ifp);
>   |   ^~~~
> fuji_green.c: In function ‘parse_tiff’:
> fuji_green.c:140:11: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   140 |   fgets (make, 64, ifp);
>   |   ^
> fuji_green.c:143:11: warning: ignoring return value of ‘fgets’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   143 |   fgets (model, 64, ifp);
>   |   ^~
> fuji_green.c: In function ‘identify’:
> fuji_green.c:160:3: warning: ignoring return value of ‘fread’ declared with 
> attribute 

Bug#1066463: gnome-paint: FTBFS: cv_resize.c:368:9: error: implicit declaration of function ‘undo_add_resize’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: gnome-paint
Version: 0.4.0-9
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..  -DPACKAGE_LOCALE_DIR=\""/usr/share/locale"\" 
> -DPACKAGE_SRC_DIR=\""."\" -DPACKAGE_DATA_DIR=\""/usr/share"\" 
> -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include 
> -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz 
> -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount 
> -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo 
> -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 
> -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/atk-1.0 
> -pthread  -Wdate-time -D_FORTIFY_SOURCE=2 -DG_DISABLE_DEPRECATED 
> -DG_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_DEPRECATED 
> -DGDK_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o 
> gnome_paint-pixbuf-file-chooser.o `test -f 'pixbuf-file-chooser.c' || echo 
> './'`pixbuf-file-chooser.c
> cv_resize.c: In function ‘cv_resize_stop’:
> cv_resize.c:368:9: error: implicit declaration of function ‘undo_add_resize’ 
> [-Werror=implicit-function-declaration]
>   368 | undo_add_resize ( width, height );
>   | ^~~
> toolbar.c: In function ‘get_gtk_image’:
> toolbar.c:505:48: warning: passing argument 1 of 
> ‘gdk_pixbuf_new_from_xpm_data’ from incompatible pointer type 
> [-Wincompatible-pointer-types]
>   505 | pixbuf = gdk_pixbuf_new_from_xpm_data (xpm);
>   |^~~
>   ||
>   |gchar ** {aka char **}
> In file included from /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf.h:34,
>  from /usr/include/gtk-2.0/gdk/gdkpixbuf.h:37,
>  from /usr/include/gtk-2.0/gdk/gdkcairo.h:28,
>  from /usr/include/gtk-2.0/gdk/gdk.h:33,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32,
>  from toolbar.h:28,
>  from toolbar.c:27:
> /usr/include/gdk-pixbuf-2.0/gdk-pixbuf/gdk-pixbuf-core.h:294:55: note: 
> expected ‘const char **’ but argument is of type ‘gchar **’ {aka ‘char **’}
>   294 | GdkPixbuf *gdk_pixbuf_new_from_xpm_data (const char **data);
>   |  ~^~~~
> color.c: In function ‘on_color_palette_entry_button_press_event’:
> color.c:178:17: error: implicit declaration of function 
> ‘notify_brush_of_fg_color_change’ [-Werror=implicit-function-declaration]
>   178 | notify_brush_of_fg_color_change();
>   | ^~~
> pixbuf-file-chooser.c: In function ‘pixbuf_file_chooser_class_init’:
> pixbuf-file-chooser.c:91:9: warning: ‘g_type_class_add_private’ is deprecated 
> [-Wdeprecated-declarations]
>91 | g_type_class_add_private (object_class, sizeof 
> (PixbufFileChooserPrivate));
>   | ^~~~
> In file included from /usr/include/glib-2.0/gobject/gobject.h:26,
>  from /usr/include/glib-2.0/gobject/gbinding.h:31,
>  from /usr/include/glib-2.0/glib-object.h:24,
>  from /usr/include/glib-2.0/gio/gioenums.h:30,
>  from /usr/include/glib-2.0/gio/giotypes.h:30,
>  from /usr/include/glib-2.0/gio/gio.h:28,
>  from /usr/include/gtk-2.0/gdk/gdkapplaunchcontext.h:30,
>  from /usr/include/gtk-2.0/gdk/gdk.h:32,
>  from /usr/include/gtk-2.0/gtk/gtk.h:32,
>  from pixbuf-file-chooser.h:29,
>  from pixbuf-file-chooser.c:30:
> /usr/include/glib-2.0/gobject/gtype.h:1495:10: note: declared here
>  1495 | void g_type_class_add_private   (gpointer
> g_class,
>   |  ^~~~
> pixbuf-file-chooser.c: In function ‘pixbuf_file_chooser_init’:
> pixbuf-file-chooser.c:97:20: warning: Deprecated pre-processor symbol: 
> replace with "G_ADD_PRI

Bug#1066462: dot-forward: FTBFS: control.c:65:41: error: implicit declaration of function ‘close’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: dot-forward
Version: 1:0.71-6
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> ( cat warn-auto.sh; \
> echo CC=\'`head -1 conf-cc`\'; \
> echo LD=\'`head -1 conf-ld`\' \
> ) > auto-ccld.sh
> nroff -man dot-forward.1 > dot-forward.0
> cat auto-ccld.sh make-load.sh > make-load
> cat auto-ccld.sh find-systype.sh > find-systype
> cat auto-ccld.sh make-compile.sh > make-compile
> cat auto-ccld.sh make-makelib.sh > make-makelib
> chmod 755 make-load
> chmod 755 find-systype
> chmod 755 make-compile
> chmod 755 make-makelib
> ./find-systype > systype
> ( cat warn-auto.sh; ./make-load "`cat systype`" ) > load
> ( cat warn-auto.sh; ./make-compile "`cat systype`" ) > \
> compile
> ( cat warn-auto.sh; ./make-makelib "`cat systype`" ) > \
> makelib
> chmod 755 load
> chmod 755 makelib
> chmod 755 compile
> ./compile dot-forward.c
> ./compile control.c
> ( ( ./compile tryvfork.c && ./load tryvfork ) >/dev/null \
> 2>&1 \
> && cat fork.h2 || cat fork.h1 ) > fork.h
> ./compile auto-str.c
> ./compile substdio.c
> ./compile substdi.c
> ./compile substdo.c
> ./compile subfderr.c
> control.c: In function ‘control_readline’:
> control.c:65:41: error: implicit declaration of function ‘close’ 
> [-Werror=implicit-function-declaration]
>65 |  if (getln(,sa,,'\n') == -1) { close(fd); return -1; }
>   | ^
> dot-forward.c: In function ‘run’:
> dot-forward.c:78:7: error: implicit declaration of function ‘pipe’ 
> [-Werror=implicit-function-declaration]
>78 |   if (pipe(pi) == -1)
>   |   ^~~~
> dot-forward.c:81:19: error: implicit declaration of function ‘fork’ 
> [-Werror=implicit-function-declaration]
>81 |   switch (child = fork()) {
>   |   ^~~~
> dot-forward.c:85:7: error: implicit declaration of function ‘close’ 
> [-Werror=implicit-function-declaration]
>85 |   close(pi[1]);
>   |   ^
> dot-forward.c:86:11: error: implicit declaration of function ‘fd_move’ 
> [-Werror=implicit-function-declaration]
>86 |   if (fd_move(0,pi[0]) == -1)
>   |   ^~~
> dot-forward.c:89:7: error: implicit declaration of function ‘sig_pipedefault’ 
> [-Werror=implicit-function-declaration]
>89 |   sig_pipedefault();
>   |   ^~~
> dot-forward.c:90:7: error: implicit declaration of function ‘execv’ 
> [-Werror=implicit-function-declaration]
>90 |   execv(*args,args);
>   |   ^
> auto-str.c:8:6: warning: conflicting types for built-in function ‘puts’; 
> expected ‘int(const char *)’ [-Wbuiltin-declaration-mismatch]
> 8 | void puts(s)
>   |  ^~~~
> auto-str.c:4:1: note: ‘puts’ is declared in header ‘’
> 3 | #include "exit.h"
>   +++ |+#include 
> 4 | 
> dot-forward.c: In function ‘readcontrols’:
> dot-forward.c:141:7: error: implicit declaration of function ‘chdir’ 
> [-Werror=implicit-function-declaration]
>   141 |   if (chdir(auto_qmail) == -1)
>   |   ^
> dot-forward.c:160:7: error: implicit declaration of function ‘fchdir’ 
> [-Werror=implicit-function-declaration]
>   160 |   if (fchdir(fddir) == -1)
>   |   ^~
> dot-forward.c: In function ‘gotaddr’:
> dot-forward.c:189:12: error: implicit declaration of function ‘case_diffb’ 
> [-Werror=implicit-function-declaration]
>   189 |   if (!case_diffb(address.s,address.len,user)) {
>   |^~
> dot-forward.c: In function ‘main’:
> dot-forward.c:389:3: error: implicit declaration of function ‘sig_pipeignore’ 
> [-Werror=implicit-function-declaration]
>   389 |   sig_pipeignore();
>   |   ^~
> rm -f tryvfork.o tryvfork
> ./compile substdio_copy.c
> ./compile error.c
> ./compile error_str.c
> ./compile str_len.c
> ./compile str_diffn.c
> ./compile byte_chr.c
> cc1: some warnings being treated as errors
> make[1]: *** [Makefile:75: control.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/dot-forward_0.71-6_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-2024031

Bug#1066461: wordnet: FTBFS: grind.c:78:9: error: implicit declaration of function ‘yyparse’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: wordnet
Version: 1:3.0-37
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include  -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> grind.c
> grind.c: In function ‘grind’:
> grind.c:78:9: error: implicit declaration of function ‘yyparse’ 
> [-Werror=implicit-function-declaration]
>78 | yyparse();
>   | ^~~
> cc1: some warnings being treated as errors
> make[4]: *** [Makefile:296: grind.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/wordnet_3.0-37_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066460: epson-inkjet-printer-escpr: FTBFS: mem.c:34:17: error: implicit declaration of function ‘err_system’; did you mean ‘system’? [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: epson-inkjet-printer-escpr
Version: 1.7.17-3
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> gcc -DHAVE_CONFIG_H -I. -I..   -Wdate-time -D_FORTIFY_SOURCE=2 -Wall 
> -DCUPS_FILTER_NAME=\"epson-escpr\" 
> -DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\"  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o epson_escpr_wrapper-wrapper.o 
> `test -f 'wrapper.c' || echo './'`wrapper.c
> mem.c: In function ‘mem_malloc’:
> mem.c:34:17: error: implicit declaration of function ‘err_system’; did you 
> mean ‘system’? [-Werror=implicit-function-declaration]
>34 | err_system ("mem_malloc");
>   | ^~
>   | system
> cc1: some warnings being treated as errors
> filter.c: In function ‘epsInitJob’:
> filter.c:132:9: error: implicit declaration of function ‘obsClear’ 
> [-Werror=implicit-function-declaration]
>   132 | obsClear();
>   | ^~~~
> filter.c: In function ‘main’:
> filter.c:346:15: error: implicit declaration of function ‘SetupJobAttrib’ 
> [-Werror=implicit-function-declaration]
>   346 | err = SetupJobAttrib();
>   |   ^~
> filter.c:355:15: error: implicit declaration of function ‘pageAllocBuffer’ 
> [-Werror=implicit-function-declaration]
>   355 | err = pageAllocBuffer();
>   |   ^~~
> filter.c:374:15: error: implicit declaration of function ‘SendStartJob’; did 
> you mean ‘epsStartJob’? [-Werror=implicit-function-declaration]
>   374 | err = SendStartJob(FALSE);
>   |   ^~~~
>   |   epsStartJob
> filter.c:537:33: error: implicit declaration of function ‘PrintBand’; did you 
> mean ‘epsPrintBand’? [-Werror=implicit-function-declaration]
>   537 | PrintBand (rever_buf, 
> bandBmp.widthBytes, );
>   | ^
>   | epsPrintBand
> make[3]: *** [Makefile:547: epson_escpr-mem.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/epson-inkjet-printer-escpr_1.7.17-3_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066459: yiyantang: FTBFS: xmalloc.c:136:16: error: implicit declaration of function ‘strlen’ [-Werror=implicit-function-declaration]

2024-03-13 Thread Lucas Nussbaum
Source: yiyantang
Version: 0.7.0-8
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie ftbfs-impfuncdef

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.

This is most likely caused by a change in dpkg 1.22.6, that enabled
-Werror=implicit-function-declaration. For more information, see
https://wiki.debian.org/qa.debian.org/FTBFS#A2024-03-13_-Werror.3Dimplicit-function-declaration

Relevant part (hopefully):
> x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/include 
> -DG_LOG_DOMAIN=\"yyt\" -I../intl -I../intl  -Wdate-time 
> -D_FORTIFY_SOURCE=2  -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> yiyantang_init.c
> xmalloc.c: In function ‘xstrdup’:
> xmalloc.c:136:16: error: implicit declaration of function ‘strlen’ 
> [-Werror=implicit-function-declaration]
>   136 |   p = xmalloc (strlen (str) + 1);
>   |^~
> xmalloc.c:48:1: note: include ‘’ or provide a declaration of 
> ‘strlen’
>47 | #include "error.h"
>   +++ |+#include 
>48 | 
> xmalloc.c:136:16: warning: incompatible implicit declaration of built-in 
> function ‘strlen’ [-Wbuiltin-declaration-mismatch]
>   136 |   p = xmalloc (strlen (str) + 1);
>   |^~
> xmalloc.c:136:16: note: include ‘’ or provide a declaration of 
> ‘strlen’
> xmalloc.c:137:3: error: implicit declaration of function ‘strcpy’ 
> [-Werror=implicit-function-declaration]
>   137 |   strcpy (p, str);
>   |   ^~
> xmalloc.c:137:3: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> xmalloc.c:137:3: warning: incompatible implicit declaration of built-in 
> function ‘strcpy’ [-Wbuiltin-declaration-mismatch]
> xmalloc.c:137:3: note: include ‘’ or provide a declaration of 
> ‘strcpy’
> loop.c: In function ‘loop’:
> loop.c:91:25: error: implicit declaration of function ‘exit’ 
> [-Werror=implicit-function-declaration]
>91 | exit (ret);
>   | ^~~~
> loop.c:42:1: note: include ‘’ or provide a declaration of ‘exit’
>41 | #include "zhconv.h"
>   +++ |+#include 
>42 | 
> loop.c:91:25: warning: incompatible implicit declaration of built-in function 
> ‘exit’ [-Wbuiltin-declaration-mismatch]
>91 | exit (ret);
>   | ^~~~
> loop.c:91:25: note: include ‘’ or provide a declaration of ‘exit’
> loop.c:117:33: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   117 | write (ptym, ibuf, ret);
>   | ^~~
> loop.c:162:41: warning: ignoring return value of ‘write’ declared with 
> attribute ‘warn_unused_result’ [-Wunused-result]
>   162 | write (STDOUT_FILENO, tbuf2, 
> ret);
>   | 
> ^
> cc1: some warnings being treated as errors
> make[3]: *** [Makefile:201: xmalloc.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/yiyantang_0.7.0-8_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Processed: forcibly merging 1065995 1066267

2024-03-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 1065995 1066267
Bug #1065995 [src:libauthen-smb-perl] libauthen-smb-perl: FTBFS on arm{el,hf}: 
smblib.c:494:5: error: implicit declaration of function ‘RFCNB_Free_Pkt’; did 
you mean ‘RFCNB_Alloc_Pkt’? [-Werror=implicit-function-declaration]
Bug #1066267 [src:libauthen-smb-perl] libauthen-smb-perl: FTBFS: valid.c:22:3: 
error: implicit declaration of function ‘SMB_Init’ 
[-Werror=implicit-function-declaration]
Added tag(s) confirmed.
Merged 1065995 1066267
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1065995: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065995
1066267: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066267
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: forcibly merging 1065768 1066288

2024-03-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 1065768 1066288
Bug #1065768 [src:libauthen-krb5-perl] libauthen-krb5-perl: FTBFS on 
arm{el,hf}: Krb5.xs:1040:17: error: implicit declaration of function 
‘krb5_free_address’; did you mean ‘krb5_free_addresses’? 
[-Werror=implicit-function-declaration]
Bug #1066288 [src:libauthen-krb5-perl] libauthen-krb5-perl: FTBFS: 
Krb5.xs:499:15: error: implicit declaration of function ‘krb5_gen_portaddr’ 
[-Werror=implicit-function-declaration]
Added tag(s) confirmed.
Merged 1065768 1066288
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
1065768: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1065768
1066288: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1066288
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#1066458: rmlint: FTBFS: ./lib/session.c:227:(.text+0x701): undefined reference to `rm_xattr_is_deduplicated'

2024-03-13 Thread Lucas Nussbaum
Source: rmlint
Version: 2.9.0-2.5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/bin/ld: librmlint.a(session.o): in function `rm_session_dedupe_main':
> ./lib/session.c:227:(.text+0x701): undefined reference to 
> `rm_xattr_is_deduplicated'
> /usr/bin/ld: ./lib/session.c:345:(.text+0xa0b): undefined reference to 
> `rm_xattr_mark_deduplicated'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rmlint_2.9.0-2.5_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066457: node-websocket: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-websocket
Version: 1.0.34+~cs10.0.25-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>/utf-8-validate/build'
>   CC(target) Release/obj.target/validation/src/validation.o
>   SOLINK_MODULE(target) Release/obj.target/validation.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-websocket_1.0.34+~cs10.0.25-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066456: rpy2: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: rpy2
Version: 3.5.15-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
>  debian/rules build
> dh build --with python3 --buildsystem=pybuild
>dh_update_autotools_config -O--buildsystem=pybuild
>dh_autoreconf -O--buildsystem=pybuild
>dh_auto_configure -O--buildsystem=pybuild
> I: pybuild base:305: python3.12 setup.py config 
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rpy2_3.5.15-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066453: arduino-ctags: FTBFS: ../../routines.c:529:48: error: expected ‘;’, ‘,’ or ‘)’ before ‘__unused__’

2024-03-13 Thread Lucas Nussbaum
Source: arduino-ctags
Version: 5.8-arduino11-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> gcc -I. -I../.. -DHAVE_CONFIG_H -g -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -c ../../sh.c
> ../../routines.c:529:48: error: expected ‘;’, ‘,’ or ‘)’ before ‘__unused__’
>   529 | static void canonicalizePath (char *const path __unused__)
>   |^~
> ../../routines.c: In function ‘isSameFile’:
> ../../routines.c:553:17: error: implicit declaration of function 
> ‘canonicalizePath’ [-Werror=implicit-function-declaration]
>   553 | canonicalizePath (n1);
>   | ^~~~
> cc1: some warnings being treated as errors
> make[2]: *** [Makefile:220: routines.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/arduino-ctags_5.8-arduino11-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066454: wpewebkit: FTBFS: SharedContextMutex.cpp:219:41: error: inlining failed in call to ‘always_inline’ ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() [with Mutex

2024-03-13 Thread Lucas Nussbaum
Source: wpewebkit
Version: 2.42.5-1.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/bin/c++ -DANGLE_ENABLE_ESSL -DANGLE_ENABLE_GLSL -DANGLE_ENABLE_OPENGL 
> -DANGLE_PLATFORM_LINUX -DBUILDING_WEBKIT=1 -DBUILDING_WITH_CMAKE=1 
> -DBUILDING_WPE__=1 -DBWRAP_EXECUTABLE=\"/usr/bin/bwrap\" 
> -DDBUS_PROXY_EXECUTABLE=\"/usr/bin/xdg-dbus-proxy\" -DEGL_EGL_PROTOTYPES=0 
> -DEGL_NO_PLATFORM_SPECIFIC_TYPES -DGETTEXT_PACKAGE=\"WPE\" 
> -DGL_GLES_PROTOTYPES=0 -DHAVE_CONFIG_H=1 -DJSC_GLIB_API_ENABLED 
> -DLIBANGLE_IMPLEMENTATION -DPAS_BMALLOC=1 -DUSE_SYSTEM_EGL 
> -I/<>/Source/ThirdParty/ANGLE/WebKit 
> -I/<>/Source/ThirdParty/ANGLE/include 
> -I/<>/Source/ThirdParty/ANGLE/include/KHR 
> -I/<>/Source/ThirdParty/ANGLE/src 
> -I/<>/Source/ThirdParty/ANGLE/src/common/base 
> -I/<>/Source/ThirdParty/ANGLE/src/common/third_party/xxhash 
> -I/<>/Source/ThirdParty/ANGLE/third_party/zlib/google 
> -I/<>/obj-x86_64-linux-gnu/Source/ThirdParty/ANGLE/include -g1 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
> -Wdate-time -D_FORTIFY_SOURCE=2 -DNDEBUG -DG_DISABLE_CAST_CHECKS -std=c++20 
> -fPIC -fvisibility=hidden -fvisibility-inlines-hidden -w -MD -MT 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o
>  -MF 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o.d
>  -o 
> Source/ThirdParty/ANGLE/CMakeFiles/ANGLE.dir/src/libANGLE/SharedContextMutex.cpp.o
>  -c 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp
> cc1plus: warning: ‘-Werror=’ argument ‘-Werror=implicit-function-declaration’ 
> is not valid for C++
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp: 
> In member function ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’:
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | SharedContextMutex *const lockedRoot = root->doTryLock();
>   |~~~^~
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | SharedContextMutex *const lockedRoot = root->doTryLock();
>   |~~~^~
> In member function ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’,
> inlined from ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67,
> inlined from ‘egl::SharedContextMutex* 
> egl::SharedContextMutex::doTryLock() [with Mutex = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67,
> inlined from ‘bool egl::SharedContextMutex::try_lock() [with Mutex 
> = std::mutex]’ at 
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:124:28:
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:219:41:
>  error: inlining failed in call to ‘always_inline’ 
> ‘egl::SharedContextMutex* egl::SharedContextMutex::doTryLock() 
> [with Mutex = std::mutex]’: recursive inlining
>   219 | ANGLE_INLINE SharedContextMutex 
> *SharedContextMutex::doTryLock()
>   | ^
> /<>/Source/ThirdParty/ANGLE/src/libANGLE/SharedContextMutex.cpp:230:67:
>  note: called from here
>   230 | Shared

Bug#1066455: littler: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: littler
Version: 0.3.19-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> gcc -o r -g -O2 -ffile-prefix-map=/build/reproducible-path/r-base-4.3.3=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/share/R/include littler.c -Wl,-z,relro -Wl,--export-dynamic -fopenmp 
> -Wl,-z,relro -L/usr/lib/R/lib -lR -lpcre2-8 -llzma -lbz2 -lz -ltirpc -lrt 
> -ldl -lm -licuuc -licui18n -lblas -llapack -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server -Wl,-rpath,/usr/lib/R/lib 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu 
> -Wl,-rpath,/usr/lib/jvm/default-java/lib/server 
> -Wl,-rpath,/usr/lib/x86_64-linux-gnu/libfakeroot 
> -Wl,-rpath,/usr/lib64/libfakeroot -Wl,-rpath,/usr/lib32/libfakeroot 
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/littler_0.3.19-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066452: rapache: FTBFS: ld: cannot find -ltirpc: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: rapache
Version: 1.2.10-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/share/apr-1.0/build/libtool  --mode=link --tag=disable-static 
> x86_64-linux-gnu-gcc -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -lpcre2-8 
> -L/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0-o mod_R.la  -rpath 
> /usr/lib/apache2/modules -module -avoid-versionmod_R.lo 
> -Wl,--export-dynamic -fopenmp -Wl,-z,relro -L/usr/lib/R/lib -lR -lpcre2-8 
> -llzma -lbz2 -lz -ltirpc -lrt -ldl -lm -licuuc -licui18n 
> -L/usr/lib/x86_64-linux-gnu -lapreq2
> libtool: link: x86_64-linux-gnu-gcc -shared  -fPIC -DPIC  .libs/mod_R.o   
> -L/usr/lib/x86_64-linux-gnu/libpcre2-8.so.0 -L/usr/lib/R/lib -lR -lpcre2-8 
> -llzma -lbz2 -lz -ltirpc -lrt -ldl -lm -licuuc -licui18n 
> -L/usr/lib/x86_64-linux-gnu -lapreq2  -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-z 
> -Wl,now -Wl,--export-dynamic -fopenmp -Wl,-z -Wl,relro   -fopenmp -Wl,-soname 
> -Wl,mod_R.so -o .libs/mod_R.so
> /usr/bin/ld: cannot find -ltirpc: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/rapache_1.2.10-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066451: phast: FTBFS: ./src/lib/phylo/./src/lib/phylo/phast_subst_mods.c:532:(.text+0xead7): undefined reference to `die'

2024-03-13 Thread Lucas Nussbaum
Source: phast
Version: 1.6+dfsg-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/bin/ld: 
> /<>/src/exoniphy/../../lib/libphast.a(phast_subst_mods.o): in 
> function `tm_rate_params_init_from_model':
> ./src/lib/phylo/./src/lib/phylo/phast_subst_mods.c:532:(.text+0xead7): 
> undefined reference to `die'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/phast_1.6+dfsg-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066450: opensearch: FTBFS: server/src/main/java/org/opensearch/index/codec/CodecService.java:37: error: cannot find symbol

2024-03-13 Thread Lucas Nussbaum
Source: opensearch
Version: 2.4.1+dfsg-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> find . -name internalClusterTest -o -name javaRestTest -o -name test -o -name 
> yamlRestTest | xargs rm -rf
> rm -rf modules/ingest-geoip # Cannot be built due to missing build 
> dependencies
> find distribution/src/ -type f | grep -v '\.exe$' | xargs 
> debian/fill-gradle-template distribution/build.gradle
> $VAR1 = {
>   'path.env' => '/etc/default/opensearch',
>   'path.logs' => 'path.logs: /var/log/opensearch',
>   'project.version' => '1.2.3',
>   'path.data' => 'path.data: /var/lib/opensearch',
>   'loggc' => '/var/log/opensearch/gc.log',
>   'heap.min' => '1g',
>   'opensearch.bundled_jdk' => 'true',
>   'error.file' => 
> '-XX:ErrorFile=/var/log/opensearch/hs_err_pid%p.log',
>   'license.name' => 'ASL-2.0',
>   'heap.dump.path' => '-XX:HeapDumpPath=/var/lib/opensearch',
>   'heap.max' => '1g',
>   'source.path.env' => 'source /etc/default/opensearch',
>   'project.name' => 'Debian',
>   'stopping.timeout' => undef,
>   'scripts.footer' => 'exit 0
> ',
>   'path.conf' => '/etc/opensearch',
>   'license.text' => 'Apache 2.0',
>   'opensearch.distribution.type' => 'deb'
> };
> jh_build --javacopts='-source 11 -encoding UTF-8' --no-javadoc 
> opensearch-2.4.1.jar client/ distribution/tools/java-version-checker/ 
> distribution/tools/keystore-cli/ distribution/tools/launchers/ libs/ modules/ 
> server/
> warning: [options] system modules path not set in conjunction with -source 11
> server/src/main/java/org/opensearch/client/package-info.java:36: warning: a 
> package-info.java file has already been seen for package org.opensearch.client
> package org.opensearch.client;
>   ^
> server/src/main/java/org/opensearch/index/reindex/package-info.java:10: 
> warning: a package-info.java file has already been seen for package 
> org.opensearch.index.reindex
> package org.opensearch.index.reindex;
> ^
> Note: Processing Log4j annotations
> Note: Annotations processed
> server/src/main/java/org/opensearch/client/package-info.java:36: warning: a 
> package-info.java file has already been seen for package org.opensearch.client
> package org.opensearch.client;
>   ^
> server/src/main/java/org/opensearch/index/reindex/package-info.java:10: 
> warning: a package-info.java file has already been seen for package 
> org.opensearch.index.reindex
> package org.opensearch.index.reindex;
> ^
> server/src/main/java/org/opensearch/index/codec/CodecService.java:37: error: 
> cannot find symbol
> import org.apache.lucene.codecs.lucene94.Lucene94Codec;
> ^
>   symbol:   class Lucene94Codec
>   location: package org.apache.lucene.codecs.lucene94
> server/src/main/java/org/opensearch/index/codec/CodecService.java:38: error: 
> package org.apache.lucene.codecs.lucene94.Lucene94Codec does not exist
> import org.apache.lucene.codecs.lucene94.Lucene94Codec.Mode;
>   ^
> server/src/main/java/org/opensearch/index/mapper/DateFieldMapper.java:40: 
> error: cannot find symbol
> import 
> org.apache.lucene.sandbox.search.IndexSortSortedNumericDocValuesRangeQuery;
>^
>   symbol:   class IndexSortSortedNumericDocValuesRangeQuery
>   location: package org.apache.lucene.sandbox.search
> server/src/main/java/org/opensearch/index/mapper/NumberFieldMapper.java:45: 
> error: cannot find symbol
> import 
> org.apache.lucene.sandbox.search.IndexSortSortedNumericDocValuesRangeQuery;
>^
>   symbol:   class IndexSortSortedNumericDocValuesRangeQuery
>   location: package org.apache.lucene.sandbox.search
> server/src/main/java/org/opensearch/index/codec/PerFieldMappingPostingFormatCodec.java:39:
>  error: cannot find symbol
> import org.apache.lucene.codecs.lucene94.Lucene94Codec;
> ^
>   symbol:   class Lucene94Codec
>   location: package org.apache.lucene.codecs.lucene94
> server/src/main/java/org/opensearch/index/codec/PerFieldMappingPostingFormatCodec.java:56:
>  error: cannot find symbol
> public class PerFieldMappingPostingFormatCodec extends Lucene94Codec {
>  

Bug#1066449: mpi4py: FTBFS: ld: cannot find -llmpe: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: mpi4py
Version: 3.1.5-5
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> dh_auto_build override_dh_auto_build-arch -- \
>   --build-args "--mpicc=/usr/bin/mpicc --mpicxx=/usr/bin/mpicxx"
> I: pybuild base:305: /usr/bin/python3.12 setup.py build 
> --mpicc=/usr/bin/mpicc --mpicxx=/usr/bin/mpicxx
> running build
> running build_src
> running build_py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/bench.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/run.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__main__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/pool.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_lib.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__main__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_core.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_base.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/aplus.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/server.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/__init__.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/pkl5.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/dtlib.py -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/py.typed -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/MPI.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/bench.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/run.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__main__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/dl.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/__init__.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/libmpi.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> copying src/mpi4py/MPI.pxd -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/include
> creating /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.MPI.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.MPI_api.h -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi4py.i -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/include/mpi4py/mpi.pxi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/include/mpi4py
> copying src/mpi4py/futures/pool.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/server.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_lib.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/__main__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/aplus.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/futures/_core.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/futures
> copying src/mpi4py/util/__init__.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/mpi4py/util
> copying src/mpi4py/util/dtlib.pyi -> 
> /<>/.pybuild/cpython3_3.12/build/m

Bug#1066447: gpm: FTBFS: prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: gpm
Version: 1.20.7-10
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> gcc -I. -I /<>/src -M -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/<>/src -DHAVE_CONFIG_H -include headers/config.h -Wall 
> -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time 
> -D_FORTIFY_SOURCE=2 $DEPS | \
> /usr/bin/sed 's/^\(.*\)\.o\([ :]+\)/\1.o \1.lo\2/g' >> .depend ; done
> prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory
>40 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/display-coords.c:41:10: fatal error: gpm.h: No such file or directory
>41 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/get-versions.c:25:10: fatal error: gpm.h: No such file or directory
>25 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> # make links in srcdir
> make[3]: [Makefile:92: dep] Error 1 (ignored)
> # create dependencies
> for DEPS in `echo *.c */*.c`; do \
> gcc -I. -I /<>/src -M -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/<>/src -DHAVE_CONFIG_H -include headers/config.h -Wall 
> -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time 
> -D_FORTIFY_SOURCE=2 $DEPS | \
> /usr/bin/sed 's/^\(.*\)\.o\([ :]+\)/\1.o \1.lo\2/g' >> .depend ; done
> prog/display-buttons.c:40:10: fatal error: gpm.h: No such file or directory
>40 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/display-coords.c:41:10: fatal error: gpm.h: No such file or directory
>41 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> prog/get-versions.c:25:10: fatal error: gpm.h: No such file or directory
>25 | #include   /* gpm information  */
>   |  ^~~
> compilation terminated.
> make[3]: Leaving directory '/<>/src'
> make[3]: Entering directory '/<>/src'
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o mice.o mice.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o twiddler.o twiddler.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -c 
> -o synaptics.o synaptics.c
> gcc -Wdate-time -D_FORTIFY_SOURCE=2 -I/<>/src -DHAVE_CONFIG_H 
> -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" 
> -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map=/<>=. -fstack-protector-strong 
> -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -g 
> -O2 -Werror=implicit-function-declaration 
> -ffile-prefix-map

Bug#1066448: zvbi: FTBFS: io-sim.c:128:1: error: static declaration of ‘sincos’ follows non-static declaration

2024-03-13 Thread Lucas Nussbaum
Source: zvbi
Version: 0.2.42-1.2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /bin/bash ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  
> -I..  -D_REENTRANT -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c -o io-v4l2.lo io-v4l2.c
> io-sim.c:128:1: error: static declaration of ‘sincos’ follows non-static 
> declaration
>   128 | sincos  (double x,
>   | ^~
> In file included from /usr/include/features.h:490,
>  from 
> /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
>  from /usr/include/math.h:27,
>  from io-sim.c:28:
> /usr/include/x86_64-linux-gnu/bits/mathcalls.h:79:1: note: previous 
> declaration of ‘sincos’ with type ‘void(double,  double *, double *)’
>79 | __MATHDECL_VEC (void,sincos,,
>   | ^~
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -D_REENTRANT 
> -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c io-v4l.c  -fPIC -DPIC -o 
> .libs/io-v4l.o
> libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -D_REENTRANT 
> -D_GNU_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2 -g -O2 
> -Werror=implicit-function-declaration -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -c io-v4l2.c  -fPIC -DPIC -o 
> .libs/io-v4l2.o
> make[5]: *** [Makefile:794: io-sim.lo] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/zvbi_0.2.42-1.2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066446: node-iconv: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-iconv
Version: 3.0.1+~3.0.0-1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[2]: Entering directory '/<>/build'
>   CC(target) Release/obj.target/iconv/binding.o
>   SOLINK_MODULE(target) Release/obj.target/iconv.node
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-iconv_3.0.1+~3.0.0-1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066445: node-node-sass: FTBFS: ld: cannot find -lnode: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: node-node-sass
Version: 7.0.3+git20221109.ee13eb9+dfsg-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
>   g++ -o Release/obj.target/binding.node -shared -pthread -rdynamic -m64 
> -Wl,-z,relro -Wl,-z,now -Wl,-soname=binding.node -Wl,--start-group 
> Release/obj.target/binding/src/binding.o 
> Release/obj.target/binding/src/create_string.o 
> Release/obj.target/binding/src/custom_function_bridge.o 
> Release/obj.target/binding/src/custom_importer_bridge.o 
> Release/obj.target/binding/src/sass_context_wrapper.o 
> Release/obj.target/binding/src/sass_types/boolean.o 
> Release/obj.target/binding/src/sass_types/color.o 
> Release/obj.target/binding/src/sass_types/error.o 
> Release/obj.target/binding/src/sass_types/factory.o 
> Release/obj.target/binding/src/sass_types/list.o 
> Release/obj.target/binding/src/sass_types/map.o 
> Release/obj.target/binding/src/sass_types/null.o 
> Release/obj.target/binding/src/sass_types/number.o 
> Release/obj.target/binding/src/sass_types/string.o -Wl,--end-group -lnode 
> -lsass
> /usr/bin/ld: cannot find -lnode: No such file or directory
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/node-node-sass_7.0.3+git20221109.ee13eb9+dfsg-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066444: nacl: FTBFS: ld: cannot find -lnsl: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: nacl
Version: 20110221-13
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> make[1]: Entering directory '/<>'
> ./do
> echo 'log'
> log
> echo '==='
> ===
> cat build/debianbuildhost/log
> === Tue Mar 12 20:30:43 UTC 2024 === starting
> === Tue Mar 12 20:30:43 UTC 2024 === hostname
> ip-10-84-234-227
> === Tue Mar 12 20:30:43 UTC 2024 === uname -a
> Linux ip-10-84-234-227 6.1.0-13-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 
> 6.1.55-1 (2023-09-29) x86_64 GNU/Linux
> === Tue Mar 12 20:30:43 UTC 2024 === uname -M
> uname: invalid option -- 'M'
> Try 'uname --help' for more information.
> === Tue Mar 12 20:30:43 UTC 2024 === uname -F
> uname: invalid option -- 'F'
> Try 'uname --help' for more information.
> === Tue Mar 12 20:30:43 UTC 2024 === /usr/sbin/lscfg | grep proc
> ./do: 57: /usr/sbin/lscfg: not found
> === Tue Mar 12 20:30:43 UTC 2024 === /usr/sbin/lsattr -El proc0
> ./do: 59: /usr/sbin/lsattr: not found
> === Tue Mar 12 20:30:43 UTC 2024 === cat /proc/cpuinfo
> processor : 0
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 0
> cpu cores : 4
> apicid: 0
> initial apicid: 0
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni 
> pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt 
> tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 
> 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
> invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd 
> avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
> bugs  : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds 
> swapgs itlb_multihit mmio_stale_data retbleed gds
> bogomips  : 4999.99
> clflush size  : 64
> cache_alignment   : 64
> address sizes : 46 bits physical, 48 bits virtual
> power management:
> 
> processor : 1
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 1
> cpu cores : 4
> apicid: 2
> initial apicid: 2
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid tsc_known_freq pni 
> pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt 
> tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 
> 3dnowprefetch invpcid_single pti fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms 
> invpcid mpx avx512f avx512dq rdseed adx smap clflushopt clwb avx512cd 
> avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves ida arat pku ospke
> bugs  : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds 
> swapgs itlb_multihit mmio_stale_data retbleed gds
> bogomips  : 4999.99
> clflush size  : 64
> cache_alignment   : 64
> address sizes : 46 bits physical, 48 bits virtual
> power management:
> 
> processor : 2
> vendor_id : GenuineIntel
> cpu family: 6
> model : 85
> model name: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz
> stepping  : 7
> microcode : 0x5003605
> cpu MHz   : 2499.996
> cache size: 36608 KB
> physical id   : 0
> siblings  : 8
> core id   : 2
> cpu cores : 4
> apicid: 4
> initial apicid: 4
> fpu   : yes
> fpu_exception : yes
> cpuid level   : 13
> wp: yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
> pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm 
> constant_tsc rep_good nopl xtopology nonstop_tsc cpuid t

Bug#1066442: merkaartor: FTBFS: Preferences/MerkaartorPreferences.h:28:10: fatal error: proxy.h: No such file or directory

2024-03-13 Thread Lucas Nussbaum
Source: merkaartor
Version: 0.19.0+ds-4
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> g++ -c -pipe -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -I/usr/include/gdal -g -O2 -ffile-prefix-map=/<>=. 
> -fstack-protector-strong -fstack-clash-protection -Wformat 
> -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
> -std=gnu++11 -frtti -Wall -Wextra -Wno-reorder -D_REENTRANT -fPIC 
> -DQT_NO_DEPRECATED_WARNINGS -DVERSION=0.19.0 -DREVISION=0.19.0-64bit 
> -DPRODUCT=Merkaartor -DUSE_LIBPROXY -DUSE_WEBKIT -D_TTY_POSIX_ -DUSE_GPS 
> -DUSE_GPSD_LIB -DPLUGINS_DIR=/usr/lib/merkaartor/plugins 
> -DSHARE_DIR=/usr/share/merkaartor 
> -DTRANSDIR_MERKAARTOR=/usr/share/merkaartor/translations 
> -DTRANSDIR_SYSTEM=/usr/share/qt5/translations/ -DGEOIMAGE -DQT_NO_DEBUG 
> -DQT_SVG_LIB -DQT_WEBENGINEWIDGETS_LIB -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB 
> -DQT_WEBENGINECORE_LIB -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QMLMODELS_LIB 
> -DQT_WEBCHANNEL_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_XML_LIB 
> -DQT_CONCURRENT_LIB -DQT_POSITIONING_LIB -DQT_CORE_LIB -I. 
> -I../3rdparty/qtsingleapplication-2.6_1-opensource/src -I. -I../include 
> -I../interfaces -Icommon -IBackend -IPaintStyle -IPaintStyle -IFeatures 
> -ILayers -IPreferences -ISync -ICommands -IInteractions -IDocks -IQMapControl 
> -IImportExport -IRender -Iqextserialport -IGPS -ITools -ITagTemplate 
> -INameFinder -IUtils -IQToolBarDialog -I/usr/include/x86_64-linux-gnu/qt5 
> -I/usr/include/x86_64-linux-gnu/qt5/QtSvg 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineWidgets 
> -I/usr/include/x86_64-linux-gnu/qt5/QtPrintSupport 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWidgets 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebEngineCore 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQuick 
> -I/usr/include/x86_64-linux-gnu/qt5/QtGui 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQmlModels 
> -I/usr/include/x86_64-linux-gnu/qt5/QtWebChannel 
> -I/usr/include/x86_64-linux-gnu/qt5/QtQml 
> -I/usr/include/x86_64-linux-gnu/qt5/QtNetwork 
> -I/usr/include/x86_64-linux-gnu/qt5/QtXml 
> -I/usr/include/x86_64-linux-gnu/qt5/QtConcurrent 
> -I/usr/include/x86_64-linux-gnu/qt5/QtPositioning 
> -I/usr/include/x86_64-linux-gnu/qt5/QtCore -Irelease -I. 
> -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o release/Global.o 
> common/Global.cpp
> In file included from common/Projection.h:7,
>  from common/MapView.h:4,
>  from Features/Feature.h:8,
>  from Features/Features.h:2,
>  from Backend/MemoryBackend.h:4,
>  from common/Global.h:19,
>  from common/Global.cpp:13:
> Preferences/MerkaartorPreferences.h:28:10: fatal error: proxy.h: No such file 
> or directory
>28 | #include 
>   |  ^
> compilation terminated.
> make[3]: *** [Makefile.Release:2432: release/Global.o] Error 1


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/merkaartor_0.19.0+ds-4_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066441: blackbox-terminal: FTBFS: ./obj-x86_64-linux-gnu/src/blackbox.p/CommandLine.c:544:(.text+0xb6f): undefined reference to `g_application_command_line_print_literal'

2024-03-13 Thread Lucas Nussbaum
Source: blackbox-terminal
Version: 0.14.0-2
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/bin/ld: src/blackbox.p/meson-generated_CommandLine.c.o: in function 
> `terminal_command_line_parse_command_line':
> ./obj-x86_64-linux-gnu/src/blackbox.p/CommandLine.c:544:(.text+0xb6f): 
> undefined reference to `g_application_command_line_print_literal'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/blackbox-terminal_0.14.0-2_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



Bug#1066440: librep: FTBFS: ././conftest.c:48:(.text.startup+0xb): undefined reference to `mpz_init'

2024-03-13 Thread Lucas Nussbaum
Source: librep
Version: 0.92.5-3.1
Severity: serious
Justification: FTBFS
Tags: trixie sid ftbfs
User: lu...@debian.org
Usertags: ftbfs-20240313 ftbfs-trixie

Hi,

During a rebuild of all packages in sid, your package failed to build
on amd64.


Relevant part (hopefully):
> /usr/bin/ld: /tmp/ccO0t9oT.o: in function `main':
> ././conftest.c:48:(.text.startup+0xb): undefined reference to `mpz_init'
> collect2: error: ld returned 1 exit status


The full build log is available from:
http://qa-logs.debian.net/2024/03/13/librep_0.92.5-3.1_unstable.log

All bugs filed during this archive rebuild are listed at:
https://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=ftbfs-20240313;users=lu...@debian.org
or:
https://udd.debian.org/bugs/?release=na=ign=7=7=only=ftbfs-20240313=lu...@debian.org=1=1=1=1#results

A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

If you reassign this bug to another package, please mark it as 'affects'-ing
this package. See https://www.debian.org/Bugs/server-control#affects

If you fail to reproduce this, please provide a build log and diff it with mine
so that we can identify if something relevant changed in the meantime.



<    1   2   3   4   5   6   7   8   >