=> "/opt/pkg/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-upstream-trunk/net/bftpd", "all", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] ===> Building for bftpd-6.6 gcc -MM -MT"bftpdutmp.d bftpdutmp.o" -MFbftpdutmp.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" bftpdutmp.c gcc -MM -MT"commands.d commands.o" -MFcommands.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" commands.c gcc -MM -MT"commands_admin.d commands_admin.o" -MFcommands_admin.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" commands_admin.c gcc -MM -MT"cwd.d cwd.o" -MFcwd.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" cwd.c gcc -MM -MT"dirlist.d dirlist.o" -MFdirlist.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" dirlist.c gcc -MM -MT"list.d list.o" -MFlist.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" list.c gcc -MM -MT"login.d login.o" -MFlogin.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" login.c gcc -MM -MT"logging.d logging.o" -MFlogging.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" logging.c gcc -MM -MT"main.d main.o" -MFmain.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" main.c gcc -MM -MT"mystring.d mystring.o" -MFmystring.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" mystring.c gcc -MM -MT"options.d options.o" -MFoptions.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" options.c gcc -MM -MT"md5.d md5.o" -MFmd5.d -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" md5.c gcc -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" -I/opt/pkg/include -c -o bftpdutmp.o bftpdutmp.c gcc -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -I/opt/pkg/include -DHAVE_CONFIG_H -Wall -I. -DVERSION=\"6.6\" -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DPREFIX=\"/opt/pkg\" -I/opt/pkg/include -c -o commands.o commands.c In file included from options.h:4, from commands.c:67: commands.h:27:9: warning: "MAXPATHLEN" redefined 27 | #define MAXPATHLEN 2048 | ^~~~~~~~~~ In file included from /usr/include/sys/socket.h:64, from commands.c:19: /usr/include/sys/param.h:199:9: note: this is the location of the previous definition 199 | #define MAXPATHLEN 1024 | ^~~~~~~~~~ commands.c: In function 'run_script': commands.c:2173:4: error: unknown type name 'sig_t' 2173 | sig_t save_quit, save_int, save_chld; | ^~~~~ commands.c:2176:14: error: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion] 2176 | save_quit = signal(SIGQUIT, SIG_IGN); | ^ commands.c:2177:13: error: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion] 2177 | save_int = signal(SIGINT, SIG_IGN); | ^ commands.c:2178:14: error: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion] 2178 | save_chld = signal(SIGCHLD, SIG_DFL); | ^ commands.c:2184:23: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2184 | signal(SIGQUIT, save_quit); | ^~~~~~~~~ | | | int In file included from /usr/include/signal.h:42, from commands.c:8: /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ commands.c:2185:22: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2185 | signal(SIGINT, save_int); | ^~~~~~~~ | | | int /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ commands.c:2186:23: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2186 | signal(SIGCHLD, save_chld); | ^~~~~~~~~ | | | int /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ commands.c:2209:20: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2209 | signal(SIGQUIT, save_quit); | ^~~~~~~~~ | | | int /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ commands.c:2210:19: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2210 | signal(SIGINT, save_int); | ^~~~~~~~ | | | int /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ commands.c:2211:20: error: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion] 2211 | signal(SIGCHLD, save_chld); | ^~~~~~~~~ | | | int /usr/include/iso/signal_iso.h:63:27: note: expected 'void (*)(int)' but argument is of type 'int' 63 | extern void (*signal(int, void (*)(int)))(int); | ^~~~~~~~~~~~~ gmake: *** [: commands.o] Error 1 gmake: *** Waiting for unfinished jobs.... *** Error code 2 Stop. bmake[1]: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/net/bftpd *** Error code 1 Stop. bmake: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/net/bftpd