=> "/opt/pkg/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-upstream-trunk/audio/mserv", "all", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] ===> Building for mserv-0.35nb25 --- ./aclocal.m4 --- cd . && /usr/bin/bash /tmp/work/audio/mserv/work/mserv-0.35/missing --run aclocal-1.7 WARNING: 'aclocal' is missing on your system. You should only need it if you modified 'acinclude.m4' or 'configure.ac'. You might want to install the Automake and Perl packages. Grab them from any GNU archive site. --- ./configure --- --- ./config.h.in --- --- ./configure --- cd . && /usr/bin/bash /tmp/work/audio/mserv/work/mserv-0.35/missing --run autoconf --- ./config.h.in --- cd . && /usr/bin/bash /tmp/work/audio/mserv/work/mserv-0.35/missing --run autoheader --- ./configure --- WARNING: 'autoconf' is missing on your system. You should only need it if you modified 'configure.ac'. You might want to install the Autoconf and GNU m4 packages. Grab them from any GNU archive site. --- ./config.h.in --- WARNING: 'autoheader' is missing on your system. You should only need it if you modified 'acconfig.h' or 'configure.ac'. You might want to install the Autoconf and GNU m4 packages. Grab them from any GNU archive site. --- ./config.status --- --- ./config.h.in --- touch ./config.h.in --- ./config.status --- /usr/bin/bash ./config.status --recheck --- stamp-h1 --- cd . && /usr/bin/bash ./config.status config.h config.status: creating config.h config.status: config.h is unchanged --- config.h --- --- all --- /opt/pkg/bin/bmake all-recursive --- all-recursive --- Making all in mserv --- ./Makefile.in --- --- mserv.o --- --- misc.o --- --- cmd.o --- --- ./Makefile.in --- cd .. && /usr/bin/bash /tmp/work/audio/mserv/work/mserv-0.35/missing --run automake-1.7 --gnu mserv/Makefile --- mserv.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../hdr -DDATADIR=\"/opt/pkg/share/mserv\" -DBINDIR=\"/opt/pkg/bin\" -DPARSE_OGG_INFO=1 -I/opt/pkg/include -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Wno-error=implicit-function-declaration -I/opt/pkg/include -MT mserv.o -MD -MP -MF ".deps/mserv.Tpo" -c -o mserv.o `test -f 'mserv.c' || echo './'`mserv.c; then mv -f ".deps/mserv.Tpo" ".deps/mserv.Po"; else rm -f ".deps/mserv.Tpo"; exit 1; fi --- misc.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../hdr -DDATADIR=\"/opt/pkg/share/mserv\" -DBINDIR=\"/opt/pkg/bin\" -DPARSE_OGG_INFO=1 -I/opt/pkg/include -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Wno-error=implicit-function-declaration -I/opt/pkg/include -MT misc.o -MD -MP -MF ".deps/misc.Tpo" -c -o misc.o `test -f 'misc.c' || echo './'`misc.c; then mv -f ".deps/misc.Tpo" ".deps/misc.Po"; else rm -f ".deps/misc.Tpo"; exit 1; fi --- cmd.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../hdr -DDATADIR=\"/opt/pkg/share/mserv\" -DBINDIR=\"/opt/pkg/bin\" -DPARSE_OGG_INFO=1 -I/opt/pkg/include -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Wno-error=implicit-function-declaration -I/opt/pkg/include -MT cmd.o -MD -MP -MF ".deps/cmd.Tpo" -c -o cmd.o `test -f 'cmd.c' || echo './'`cmd.c; then mv -f ".deps/cmd.Tpo" ".deps/cmd.Po"; else rm -f ".deps/cmd.Tpo"; exit 1; fi --- ./Makefile.in --- WARNING: 'automake' is missing on your system. You should only need it if you modified 'Makefile.am', 'acinclude.m4' or 'configure.ac'. You might want to install the Automake and Perl packages. Grab them from any GNU archive site. --- acl.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../hdr -DDATADIR=\"/opt/pkg/share/mserv\" -DBINDIR=\"/opt/pkg/bin\" -DPARSE_OGG_INFO=1 -I/opt/pkg/include -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Wno-error=implicit-function-declaration -I/opt/pkg/include -MT acl.o -MD -MP -MF ".deps/acl.Tpo" -c -o acl.o `test -f 'acl.c' || echo './'`acl.c; then mv -f ".deps/acl.Tpo" ".deps/acl.Po"; else rm -f ".deps/acl.Tpo"; exit 1; fi --- mserv.o --- mserv.c: In function 'mserv_sighandler': mserv.c:187:18: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types] 187 | signal(signum, mserv_sighandler); | ^~~~~~~~~~~~~~~~ | | | int (*)(int) In file included from /usr/include/signal.h:42, from mserv.c:46: /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int (*)(int)' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ mserv.c:185:19: note: 'mserv_sighandler' declared here 185 | static RETSIGTYPE mserv_sighandler(int signum) | ^~~~~~~~~~~~~~~~ mserv.c: In function 'main': mserv.c:496:18: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types] 496 | signal(SIGINT, mserv_sighandler); | ^~~~~~~~~~~~~~~~ | | | int (*)(int) /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int (*)(int)' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ mserv.c:185:19: note: 'mserv_sighandler' declared here 185 | static RETSIGTYPE mserv_sighandler(int signum) | ^~~~~~~~~~~~~~~~ mserv.c:498:19: error: passing argument 2 of 'signal' from incompatible pointer type [-Wincompatible-pointer-types] 498 | signal(SIGCHLD, mserv_sighandler); | ^~~~~~~~~~~~~~~~ | | | int (*)(int) /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int (*)(int)' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ mserv.c:185:19: note: 'mserv_sighandler' declared here 185 | static RETSIGTYPE mserv_sighandler(int signum) | ^~~~~~~~~~~~~~~~ mserv.c: In function 'mserv_loadtrk': mserv.c:2157:20: warning: implicit declaration of function 'mserv_ogginfo_readlen'; did you mean 'mserv_mp3info_readlen'? [-Wimplicit-function-declaration] 2157 | duration = mserv_ogginfo_readlen(fullpath_file, &bitrate, &id3tag); | ^~~~~~~~~~~~~~~~~~~~~ | mserv_mp3info_readlen --- mp3info.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../hdr -DDATADIR=\"/opt/pkg/share/mserv\" -DBINDIR=\"/opt/pkg/bin\" -DPARSE_OGG_INFO=1 -I/opt/pkg/include -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Wno-error=implicit-function-declaration -I/opt/pkg/include -MT mp3info.o -MD -MP -MF ".deps/mp3info.Tpo" -c -o mp3info.o `test -f 'mp3info.c' || echo './'`mp3info.c; then mv -f ".deps/mp3info.Tpo" ".deps/mp3info.Po"; else rm -f ".deps/mp3info.Tpo"; exit 1; fi --- mserv.o --- *** [mserv.o] Error code 1 bmake[2]: stopped making "all" in /tmp/work/audio/mserv/work/mserv-0.35/mserv bmake[2]: 1 error bmake[2]: stopped making "all" in /tmp/work/audio/mserv/work/mserv-0.35/mserv *** [all-recursive] Error code 1 bmake[1]: stopped making "all-recursive" in /tmp/work/audio/mserv/work/mserv-0.35 bmake[1]: 1 error bmake[1]: stopped making "all-recursive" in /tmp/work/audio/mserv/work/mserv-0.35 *** [all] Error code 2 bmake: stopped making "all" in /tmp/work/audio/mserv/work/mserv-0.35 bmake: 1 error bmake: stopped making "all" in /tmp/work/audio/mserv/work/mserv-0.35 *** Error code 2 Stop. bmake[1]: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/audio/mserv *** Error code 1 Stop. bmake: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/audio/mserv