Package: src:dnprogs
Version: 2.65
Severity: serious
Control: close -1 2.65+rm
Tags: ftbfs bullseye

Dear maintainer:

During a rebuild of all packages in bullseye, your package failed to build:

--------------------------------------------------------------------------------
[...]
 debian/rules build
test -f debian/rules
make prefix=/usr RELEASE=true BUILDING_DEB=true
make[1]: Entering directory '/<<PKGBUILDDIR>>'
make[2]: Entering directory '/<<PKGBUILDDIR>>/include'
make[2]: Leaving directory '/<<PKGBUILDDIR>>/include'
make[2]: Entering directory '/<<PKGBUILDDIR>>/libdnet'
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/libdnet=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -DSYSCONF_PREFIX=\"\" -c -o dnet_htoa.o dnet_htoa.c
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from dnet_htoa.c:19:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
dnet_htoa.c: In function ‘dnet_htoa’:

[... snipped ...]

sethost.c:371:25: warning: pointer targets in passing argument 1 of 
‘getnodebyname’ differ in signedness [-Wpointer-sign]
  371 |  if ( (np=getnodebyname(nodename)) == NULL)
      |                         ^~~~~~~~
      |                         |
      |                         unsigned char *
In file included from sethost.c:28:
../include/netdnet/dnetdb.h:31:53: note: expected ‘const char *’ but argument 
is of type ‘unsigned char *’
   31 | extern  struct  nodeent  *getnodebyname(const char *name);
      |                                         ~~~~~~~~~~~~^~~~
sethost.c: In function ‘ct_setup_link’:
sethost.c:538:46: warning: pointer targets in passing argument 1 of ‘strlen’ 
differ in signedness [-Wpointer-sign]
  538 |      accessdata.acc_accl  = strlen(accessdata.acc_acc);
      |                                    ~~~~~~~~~~^~~~~~~~
      |                                              |
      |                                              unsigned char *
In file included from sethost.c:15:
/usr/include/string.h:385:35: note: expected ‘const char *’ but argument is of 
type ‘unsigned char *’
  385 | extern size_t strlen (const char *__s)
      |                       ~~~~~~~~~~~~^~~
sethost.c: In function ‘ct_read_req’:
sethost.c:936:18: warning: pointer targets in passing argument 1 of 
‘ct_echo_prompt’ differ in signedness [-Wpointer-sign]
  936 |   ct_echo_prompt(&buf[bufptr]);
      |                  ^~~~~~~~~~~~
      |                  |
      |                  unsigned char *
sethost.c:862:34: note: expected ‘char *’ but argument is of type ‘unsigned 
char *’
  862 | static void ct_echo_prompt(char *c)
      |                            ~~~~~~^
sethost.c: In function ‘ct_write_req’:
sethost.c:1045:42: warning: pointer targets in passing argument 1 of 
‘ct_echo_prompt’ differ in signedness [-Wpointer-sign]
 1045 |    if (i < end_of_prompt) ct_echo_prompt(&inpbuf[i]);
      |                                          ^~~~~~~~~~
      |                                          |
      |                                          unsigned char *
sethost.c:862:34: note: expected ‘char *’ but argument is of type ‘unsigned 
char *’
  862 | static void ct_echo_prompt(char *c)
      |                            ~~~~~~^
sethost.c:1046:28: warning: pointer targets in passing argument 1 of 
‘ct_echo_input_char’ differ in signedness [-Wpointer-sign]
 1046 |    else ct_echo_input_char(&inpbuf[i]);
      |                            ^~~~~~~~~~
      |                            |
      |                            unsigned char *
sethost.c:257:38: note: expected ‘char *’ but argument is of type ‘unsigned 
char *’
  257 | static void ct_echo_input_char(char *c)
      |                                ~~~~~~^
sethost.c: In function ‘main’:
sethost.c:1832:14: warning: pointer targets in assignment from ‘char *’ to 
‘unsigned char *’ differ in signedness [-Wpointer-sign]
 1832 |     nodename = argv[optind];
      |              ^
sethost.c: At top level:
sethost.c:155:13: warning: ‘debug’ is static but used in inline function 
‘set_short’ which is not static
  155 | {       if (debug == 2) { printf(" Entered inline void 
set_short...\n");}
      |             ^~~~~
sethost.c: In function ‘ct_preinput_proc’:
sethost.c:741:9: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  741 |         write(ttyfd,"\n*output off*\n",14);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sethost.c:743:9: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  743 |         write(ttyfd,"\n*output on*\n",13);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sethost.c:758:16: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  758 |                write(ttyfd,&BELL,1);
      |                ^~~~~~~~~~~~~~~~~~~~
sethost.c: In function ‘ct_out_of_band’:
sethost.c:346:4: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  346 |    write(ttyfd,"\n*Interrupt*\n",13);
      |    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sethost.c: In function ‘ct_input_proc’:
sethost.c:286:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  286 |     write(ttyfd,&clrchar,3);
      |     ^~~~~~~~~~~~~~~~~~~~~~~
sethost.c: In function ‘ct_echo_input_char’:
sethost.c:267:3: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  267 |   write(ttyfd,&car,1);
      |   ^~~~~~~~~~~~~~~~~~~
sethost.c:271:3: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  271 |   write(ttyfd,c,1);
      |   ^~~~~~~~~~~~~~~~
sethost.c: In function ‘ct_echo_prompt’:
sethost.c:865:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  865 |  write(ttyfd,c,1);
      |  ^~~~~~~~~~~~~~~~
sethost.c: In function ‘ct_print_char’:
sethost.c:843:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  843 |  write(ttyfd,c,1);
      |  ^~~~~~~~~~~~~~~~
sethost.c: In function ‘proc_rsts_pkt’:
sethost.c:1700:3: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 1700 |   write(ttyfd, buf + 4, data_cnt);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sethost.c: In function ‘proc_tops_pkt’:
sethost.c:1714:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
 1714 |  write(ttyfd, buf, cnt);
      |  ^~~~~~~~~~~~~~~~~~~~~~
gcc -o sethost -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro 
-D_SVID_SOURCE sethost.o  -L../libdnet -ldnet
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -D_SVID_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -c -o dnping.o 
dnping.c
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from dnping.c:18:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
gcc -o dnping -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro 
-D_SVID_SOURCE dnping.o -L../libdnet -ldnet
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -D_SVID_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -c -o ctermd.o 
ctermd.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from ctermd.c:17:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
ctermd.c: In function ‘cterm’:
ctermd.c:252:4: warning: this ‘if’ clause does not guard... 
[-Wmisleading-indentation]
  252 |    if (select(FD_SETSIZE,&rdfs,NULL,NULL, NULL) > 0);
      |    ^~
ctermd.c:253:4: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the ‘if’
  253 |    {
      |    ^
ctermd.c: In function ‘cterm_unbind’:
ctermd.c:123:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  123 |  write(net,cterm_unbind_msg,3);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm_reset’:
ctermd.c:148:8: warning: ignoring return value of ‘chown’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  148 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
ctermd.c:151:8: warning: ignoring return value of ‘chown’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  151 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm_purge’:
ctermd.c:163:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  163 |  write(pty,&Control_c,1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~
ctermd.c:167:4: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  167 |    read(pty,buf,numbytes);
      |    ^~~~~~~~~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm_unread’:
ctermd.c:175:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  175 |  write(net,cterm_unread_msg,sizeof(cterm_unread_msg));
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm_read’:
ctermd.c:193:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  193 |  write(net,cterm_stread_msg,sizeof(cterm_stread_msg));
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm’:
ctermd.c:275:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  275 |     write(pty,&buf[12],cnt-12);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~
ctermd.c:284:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  284 |     write(pty,&buf[6],1);
      |     ^~~~~~~~~~~~~~~~~~~~
ctermd.c: In function ‘cterm_reset’:
ctermd.c:147:8: warning: argument 1 null where non-null expected [-Wnonnull]
  147 |  (void)chmod(line,0666);
      |        ^~~~~~~~~~~~~~~~
In file included from ctermd.c:32:
/usr/include/x86_64-linux-gnu/sys/stat.h:280:12: note: in a call to function 
‘chmod’ declared here
  280 | extern int chmod (const char *__file, __mode_t __mode)
      |            ^~~~~
ctermd.c:148:8: warning: argument 1 null where non-null expected [-Wnonnull]
  148 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
In file included from ctermd.c:19:
/usr/include/unistd.h:473:12: note: in a call to function ‘chown’ declared here
  473 | extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
      |            ^~~~~
ctermd.c:150:8: warning: argument 1 null where non-null expected [-Wnonnull]
  150 |  (void)chmod(line,0666);
      |        ^~~~~~~~~~~~~~~~
In file included from ctermd.c:32:
/usr/include/x86_64-linux-gnu/sys/stat.h:280:12: note: in a call to function 
‘chmod’ declared here
  280 | extern int chmod (const char *__file, __mode_t __mode)
      |            ^~~~~
ctermd.c:151:8: warning: argument 1 null where non-null expected [-Wnonnull]
  151 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
In file included from ctermd.c:19:
/usr/include/unistd.h:473:12: note: in a call to function ‘chown’ declared here
  473 | extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
      |            ^~~~~
gcc -o ctermd -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro 
-D_SVID_SOURCE ctermd.o -L../libdaemon -ldnet_daemon -lcrypt -L../libdnet -ldnet -lutil
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -D_SVID_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -c -o rmtermd.o 
rmtermd.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from rmtermd.c:31:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
rmtermd.c: In function ‘rmterm’:
rmtermd.c:162:3: warning: this ‘if’ clause does not guard... 
[-Wmisleading-indentation]
  162 |   if (select(pty+1,&rdfs,NULL,NULL,&tv) > 0);
      |   ^~
rmtermd.c:163:3: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the ‘if’
  163 |   {
      |   ^
rmtermd.c:176:3: warning: this ‘if’ clause does not guard... 
[-Wmisleading-indentation]
  176 |   if (select(net+1,&rdfs,NULL,NULL,&tv) > 0);
      |   ^~
rmtermd.c:177:3: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the ‘if’
  177 |   {
      |   ^
rmtermd.c: In function ‘rmterm_reset’:
rmtermd.c:99:8: warning: ignoring return value of ‘chown’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
   99 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
rmtermd.c:102:8: warning: ignoring return value of ‘chown’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  102 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
rmtermd.c: In function ‘rmterm_purge’:
rmtermd.c:114:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  114 |  write(pty,&Control_c,1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~
rmtermd.c:118:4: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  118 |    read(pty,buf,numbytes);
      |    ^~~~~~~~~~~~~~~~~~~~~~
rmtermd.c: In function ‘rmterm’:
rmtermd.c:183:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  183 |     write(pty,buf,cnt);
      |     ^~~~~~~~~~~~~~~~~~
rmtermd.c: In function ‘rmterm_reset’:
rmtermd.c:98:8: warning: argument 1 null where non-null expected [-Wnonnull]
   98 |  (void)chmod(line,0666);
      |        ^~~~~~~~~~~~~~~~
In file included from rmtermd.c:46:
/usr/include/x86_64-linux-gnu/sys/stat.h:280:12: note: in a call to function 
‘chmod’ declared here
  280 | extern int chmod (const char *__file, __mode_t __mode)
      |            ^~~~~
rmtermd.c:99:8: warning: argument 1 null where non-null expected [-Wnonnull]
   99 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
In file included from rmtermd.c:33:
/usr/include/unistd.h:473:12: note: in a call to function ‘chown’ declared here
  473 | extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
      |            ^~~~~
rmtermd.c:101:8: warning: argument 1 null where non-null expected [-Wnonnull]
  101 |  (void)chmod(line,0666);
      |        ^~~~~~~~~~~~~~~~
In file included from rmtermd.c:46:
/usr/include/x86_64-linux-gnu/sys/stat.h:280:12: note: in a call to function 
‘chmod’ declared here
  280 | extern int chmod (const char *__file, __mode_t __mode)
      |            ^~~~~
rmtermd.c:102:8: warning: argument 1 null where non-null expected [-Wnonnull]
  102 |  (void)chown(line,0,0);
      |        ^~~~~~~~~~~~~~~
In file included from rmtermd.c:33:
/usr/include/unistd.h:473:12: note: in a call to function ‘chown’ declared here
  473 | extern int chown (const char *__file, __uid_t __owner, __gid_t __group)
      |            ^~~~~
gcc -o rmtermd -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro 
-D_SVID_SOURCE rmtermd.o -L../libdaemon -ldnet_daemon -lcrypt -L../libdnet -ldnet -lutil
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -D_SVID_SOURCE -Wdate-time -D_FORTIFY_SOURCE=2  -c -o copynodes.o 
copynodes.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from copynodes.c:16:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
gcc -o dncopynodes -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/apps=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe 
-fsigned-char -Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro 
-D_SVID_SOURCE copynodes.o -L../libdnet -ldnet
make[2]: Leaving directory '/<<PKGBUILDDIR>>/apps'
make[2]: Entering directory '/<<PKGBUILDDIR>>/phone'
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2  -c -o main.o main.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from main.c:6:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2  -c -o phone_ncurses.o 
phone_ncurses.c
In file included from /usr/include/x86_64-linux-gnu/sys/stat.h:25,
                 from phone_ncurses.c:6:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2  -c -o backend.o backend.c
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from backend.c:6:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
backend.c: In function ‘do_hold’:
backend.c:546:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  546 |  write(fds[i].out_fd, buf, strlen(buf)+1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘do_directory’:
backend.c:902:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  902 |     write(sockfd, msg, 1);
      |     ^~~~~~~~~~~~~~~~~~~~~
backend.c:907:9: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  907 |         write(sockfd, msg, 1); // Send for next line
      |         ^~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘do_facsimile’:
backend.c:243:6: warning: ignoring return value of ‘fgets’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  243 |      fgets(buf, sizeof(buf), f);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘send_data’:
backend.c:581:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  581 |     write(fd, buf, strlen(buf)+1+len);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘close_connection’:
backend.c:595:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  595 |  write(fd, buf, strlen(buf)+1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:598:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  598 |  write(fd, buf, strlen(buf)+1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘send_dial’:
backend.c:614:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  614 |  write(dial_fd, buf, strlen(buf)+2);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c:616:2: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  616 |  read(dial_fd, buf, 1);
      |  ^~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘send_hold’:
backend.c:643:5: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  643 |     write(fd, buf, strlen(buf)+1);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘get_fd_from_userpipe’:
backend.c:798:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  798 |  write(incoming_fd, replybuf, 1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
backend.c: In function ‘socket_callback’:
backend.c:432:3: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  432 |   write(fd, d, 1);
      |   ^~~~~~~~~~~~~~~
backend.c:439:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  439 |      write(fd, "\1", 1);
      |      ^~~~~~~~~~~~~~~~~~
backend.c:428:25: warning: ‘%s’ directive writing up to 254 bytes into a region 
of size 131 [-Wformat-overflow=]
  428 |   sprintf(message, "\007%s is phoning you on %s::     (%s)", buf+1, 
get_local_node(), d);
      |   
~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/stdio.h:867,
                 from backend.c:9:
/usr/include/x86_64-linux-gnu/bits/stdio2.h:36:10: note: 
‘__builtin___sprintf_chk’ output between 30 and 323 bytes into a destination of 
size 132
   36 |   return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   37 |       __bos (__s), __fmt, __va_arg_pack ());
      |       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -o phone main.o phone_ncurses.o backend.o -lpanel -lncurses 
-L../libdnet -ldnet
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2  -c -o phoned.o phoned.c
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from phoned.c:20:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
phoned.c: In function ‘main’:
phoned.c:139:6: warning: ignoring return value of ‘chdir’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  139 |      chdir("/");
      |      ^~~~~~~~~~
phoned.c:170:2: warning: ignoring return value of ‘seteuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  170 |  seteuid(pwd->pw_uid);
      |  ^~~~~~~~~~~~~~~~~~~~
phoned.c:171:2: warning: ignoring return value of ‘setegid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  171 |  setegid(pwd->pw_gid);
      |  ^~~~~~~~~~~~~~~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Wdate-time -D_FORTIFY_SOURCE=2  -c -o phone_server.o phone_server.c
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from phone_server.c:20:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
phone_server.c: In function ‘call_user’:
phone_server.c:111:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  111 |  write(fdarray[entry].fd, replybuf, 1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c: In function ‘dial_user’:
phone_server.c:171:7: warning: ignoring return value of ‘seteuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  171 |       seteuid(0);
      |       ^~~~~~~~~~
phone_server.c:175:4: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  175 |    write(fd, message, strlen(message));
      |    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c:178:7: warning: ignoring return value of ‘seteuid’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  178 |       seteuid(unpriv_user);
      |       ^~~~~~~~~~~~~~~~~~~~
phone_server.c:190:2: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  190 |  write(fdarray[entry].fd, replybuf, 1);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c:197:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  197 |      write(fdarray[entry].fd, replybuf, 1);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c:204:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  204 |      write(fdarray[entry].fd, replybuf, 1);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c: In function ‘send_directory’:
phone_server.c:308:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  308 |      write(fd, message, strlen(message));
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c: In function ‘send_to_client’:
phone_server.c:350:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  350 |      write(fdarray[unix_fd].fd, msghead, 2);
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c:351:6: warning: ignoring return value of ‘write’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  351 |      write(fdarray[unix_fd].fd, fdarray[decnet_fd].remote_user, 
msghead[0]);
      |      
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
phone_server.c: In function ‘read_unix’:
phone_server.c:512:5: warning: ignoring return value of ‘read’ declared with 
attribute ‘warn_unused_result’ [-Wunused-result]
  512 |     read(fdarray[entry].fd, fdarray[entry].local_user, len);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/phone=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -o phoned phoned.o phone_server.o -L../libdnet -ldnet
make[2]: Leaving directory '/<<PKGBUILDDIR>>/phone'
make[2]: Entering directory '/<<PKGBUILDDIR>>/dnroute'
make -C netlink
make[3]: Entering directory '/<<PKGBUILDDIR>>/dnroute/netlink'
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/dnroute/netlink=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Iinclude 
-Wdate-time -D_FORTIFY_SOURCE=2  -c -o ll_map.o ll_map.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from ll_map.c:13:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/dnroute/netlink=. -fstack-protector-strong 
-Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char 
-Wstrict-prototypes -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.62\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD -DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Iinclude 
-Wdate-time -D_FORTIFY_SOURCE=2  -c -o libnetlink.o libnetlink.c
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from libnetlink.c:13:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
libnetlink.c: In function ‘rtnl_open’:
libnetlink.c:37:23: warning: argument to ‘sizeof’ in ‘memset’ call is the same 
expression as the destination; did you mean to dereference it? 
[-Wsizeof-pointer-memaccess]
   37 |  memset(rth, 0, sizeof(rth));
      |                       ^
libnetlink.c:54:58: warning: pointer targets in passing argument 3 of 
‘getsockname’ differ in signedness [-Wpointer-sign]
   54 |  if (getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len) < 
0) {
      |                                                          ^~~~~~~~~
      |                                                          |
      |                                                          int *
In file included from /usr/include/net/if_arp.h:26,
                 from libnetlink.c:18:
/usr/include/x86_64-linux-gnu/sys/socket.h:117:26: note: expected ‘socklen_t * 
restrict’ {aka ‘unsigned int * restrict’} but argument is of type ‘int *’
  117 |    socklen_t *__restrict __len) __THROW;
      |    ~~~~~~~~~~~~~~~~~~~~~~^~~~~
ar rcs libnetlink.a ll_map.o libnetlink.o
make[3]: Leaving directory '/<<PKGBUILDDIR>>/dnroute/netlink'
gcc -g -O2 -ffile-prefix-map=/<<PKGBUILDDIR>>/dnroute=. -fstack-protector-strong -Wformat 
-Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -pipe -fsigned-char -Wstrict-prototypes -Wall 
-Wno-unused -Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.62\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD 
-DDNETUSE_DEVPTS -O2 -Wl,-z,relro -Inetlink/include -DSYSCONF_PREFIX=\"\" -o dnroute get_neigh.c 
send_route.c routing_msg.c csum.c hash.c pidfile.c netlink/libnetlink.a -Lnetlink -lnetlink -L../libdnet -ldnet
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from get_neigh.c:13:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
get_neigh.c:30:10: fatal error: linux/netfilter_decnet.h: No such file or 
directory
   30 | #include <linux/netfilter_decnet.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from send_route.c:13:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
send_route.c:27:10: fatal error: linux/netfilter_decnet.h: No such file or 
directory
   27 | #include <linux/netfilter_decnet.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from routing_msg.c:14:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
routing_msg.c:30:10: fatal error: linux/netfilter_decnet.h: No such file or 
directory
   30 | #include <linux/netfilter_decnet.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33,
                 from /usr/include/stdio.h:27,
                 from csum.c:12:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from hash.c:16:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
In file included from /usr/include/x86_64-linux-gnu/sys/types.h:25,
                 from pidfile.c:1:
/usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are 
deprecated, use _DEFAULT_SOURCE" [-Wcpp]
  187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use 
_DEFAULT_SOURCE"
      |   ^~~~~~~
make[2]: *** [Makefile:15: dnroute] Error 1
make[2]: Leaving directory '/<<PKGBUILDDIR>>/dnroute'
make[1]: *** [Makefile:27: all] Error 2
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:7: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
--------------------------------------------------------------------------------

The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/bullseye/

About the archive rebuild: The build was made on virtual machines
of type m6a.large and r6a.large from AWS, using sbuild and a
reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and affects, so that this is still visible in the BTS web
page for this package.

Thanks.

Reply via email to