=> "/opt/pkg/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-upstream-trunk/security/dcfldd", "all", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] ===> Building for dcfldd-1.3.4 --- all --- /opt/pkg/bin/bmake all-am --- dcfldd.o --- --- md5.o --- --- dcfldd.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I. -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Du_int8_t=uint8_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t -DLITTLE_ENDIAN=1234 -DBYTE_ORDER=LITTLE_ENDIAN -MT dcfldd.o -MD -MP -MF ".deps/dcfldd.Tpo" -c -o dcfldd.o dcfldd.c; then mv -f ".deps/dcfldd.Tpo" ".deps/dcfldd.Po"; else rm -f ".deps/dcfldd.Tpo"; exit 1; fi --- md5.o --- if gcc -DHAVE_CONFIG_H -I. -I. -I. -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -Du_int8_t=uint8_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t -DLITTLE_ENDIAN=1234 -DBYTE_ORDER=LITTLE_ENDIAN -MT md5.o -MD -MP -MF ".deps/md5.Tpo" -c -o md5.o md5.c; then mv -f ".deps/md5.Tpo" ".deps/md5.Po"; else rm -f ".deps/md5.Tpo"; exit 1; fi --- dcfldd.o --- In file included from system.h:268, from dcfldd.h:39, from dcfldd.c:22: sys2.h:297:7: error: conflicting types for 'ttyname'; have 'char *(void)' 297 | char *ttyname (); | ^~~~~~~ In file included from system.h:111: /usr/include/stdlib.h:310:14: note: previous declaration of 'ttyname' with type 'char *(int)' 310 | extern char *ttyname(int); | ^~~~~~~ --- md5.o --- In file included from system.h:268, from dcfldd.h:39, from hash.h:27, from md5.h:49, from md5.c:35: sys2.h:297:7: error: conflicting types for 'ttyname'; have 'char *(void)' 297 | char *ttyname (); | ^~~~~~~ In file included from system.h:111: /usr/include/stdlib.h:310:14: note: previous declaration of 'ttyname' with type 'char *(int)' 310 | extern char *ttyname(int); | ^~~~~~~ md5.c: In function 'MD5Init': md5.c:83:6: warning: old-style function definition [-Wold-style-definition] 83 | void MD5Init (mdContext) | ^~~~~~~ md5.c: In function 'MD5Update': md5.c:96:6: warning: old-style function definition [-Wold-style-definition] 96 | void MD5Update (mdContext, inBuf, inLen) | ^~~~~~~~~ md5.c:125:7: error: too many arguments to function 'Transform'; expected 0, have 2 125 | Transform (mdContext->buf, in); | ^~~~~~~~~ ~~~~~~~~~~~~~~ md5.c:38:13: note: declared here 38 | static void Transform (); | ^~~~~~~~~ md5.c: In function 'MD5Final': md5.c:131:6: warning: old-style function definition [-Wold-style-definition] 131 | void MD5Final (mdContext, buf) | ^~~~~~~~ md5.c:157:3: error: too many arguments to function 'Transform'; expected 0, have 2 157 | Transform (mdContext->buf, in); | ^~~~~~~~~ ~~~~~~~~~~~~~~ md5.c:38:13: note: declared here 38 | static void Transform (); | ^~~~~~~~~ md5.c: In function 'MD5Sprint': md5.c:175:6: warning: old-style function definition [-Wold-style-definition] 175 | void MD5Sprint (mdContext, buf) | ^~~~~~~~~ md5.c: In function 'Transform': md5.c:187:13: warning: old-style function definition [-Wold-style-definition] 187 | static void Transform (buf, in) | ^~~~~~~~~ --- dcfldd.o --- In file included from dcfldd.c:63: util.h:44:8: error: type defaults to 'int' in declaration of 'pclose2' [-Wimplicit-int] 44 | extern pclose2(FILE *); | ^~~~~~~ dcfldd.c: In function 'print_stats': dcfldd.c:274:13: error: too many arguments to function 'human_readable'; expected 0, have 4 274 | human_readable (r_full, buf[0], 1, 1), | ^~~~~~~~~~~~~~ ~~~~~~ In file included from dcfldd.c:49: human.h:33:7: note: declared here 33 | char *human_readable PARAMS ((uintmax_t, char *, int, int)); | ^~~~~~~~~~~~~~ dcfldd.c:275:13: error: too many arguments to function 'human_readable'; expected 0, have 4 275 | human_readable (r_partial, buf[1], 1, 1)); | ^~~~~~~~~~~~~~ ~~~~~~~~~ human.h:33:7: note: declared here 33 | char *human_readable PARAMS ((uintmax_t, char *, int, int)); | ^~~~~~~~~~~~~~ dcfldd.c:277:13: error: too many arguments to function 'human_readable'; expected 0, have 4 277 | human_readable (w_full, buf[0], 1, 1), | ^~~~~~~~~~~~~~ ~~~~~~ human.h:33:7: note: declared here 33 | char *human_readable PARAMS ((uintmax_t, char *, int, int)); | ^~~~~~~~~~~~~~ dcfldd.c:278:13: error: too many arguments to function 'human_readable'; expected 0, have 4 278 | human_readable (w_partial, buf[1], 1, 1)); | ^~~~~~~~~~~~~~ ~~~~~~~~~ human.h:33:7: note: declared here 33 | char *human_readable PARAMS ((uintmax_t, char *, int, int)); | ^~~~~~~~~~~~~~ dcfldd.c:281:17: error: too many arguments to function 'human_readable'; expected 0, have 4 281 | human_readable (r_truncate, buf[0], 1, 1), | ^~~~~~~~~~~~~~ ~~~~~~~~~~ human.h:33:7: note: declared here 33 | char *human_readable PARAMS ((uintmax_t, char *, int, int)); | ^~~~~~~~~~~~~~ dcfldd.c: In function 'parse_integer': dcfldd.c:422:20: error: too many arguments to function 'xstrtoumax'; expected 0, have 5 422 | # define __strtol xstrtoumax | ^~~~~~~~~~ dcfldd.c:435:27: note: in expansion of macro '__strtol' 435 | enum strtol_error e = __strtol(str, &suffix, 10, &n, "bcEGkMPTwYZ0"); | ^~~~~~~~ In file included from dcfldd.c:52: xstrtol.h:30:19: note: declared here 30 | _DECLARE_XSTRTOL (xstrtoumax, uintmax_t) | ^~~~~~~~~~ xstrtol.h:26:5: note: in definition of macro '_DECLARE_XSTRTOL' 26 | name PARAMS ((const char *s, char **ptr, int base, \ | ^~~~ --- md5.o --- dcfldd.h: At top level: dcfldd.h:162:20: warning: inline function 'quit' declared but never defined 162 | extern inline void quit(int); | ^~~~ --- dcfldd.o --- dcfldd.c: In function 'scanargs': dcfldd.c:687:9: error: implicit declaration of function 'init_hashlist' [-Wimplicit-function-declaration] 687 | init_hashlist(&ihashlist, hashops[VERIFY_HASH].flag); | ^~~~~~~~~~~~~ dcfldd.c: In function 'main': dcfldd.c:723:5: error: too many arguments to function 'parse_long_options'; expected 0, have 7 723 | parse_long_options(argc, argv, PROGRAM_NAME, PACKAGE, VERSION, | ^~~~~~~~~~~~~~~~~~ ~~~~ In file included from dcfldd.c:50: long-options.h:29:3: note: declared here 29 | parse_long_options PARAMS ((int _argc, | ^~~~~~~~~~~~~~~~~~ --- md5.o --- *** [md5.o] Error code 1 bmake[1]: stopped making "all-am" in /tmp/work/security/dcfldd/work/dcfldd-1.3.4 --- dcfldd.o --- *** [dcfldd.o] Error code 1 bmake[1]: stopped making "all-am" in /tmp/work/security/dcfldd/work/dcfldd-1.3.4 bmake[1]: 2 errors bmake[1]: stopped making "all-am" in /tmp/work/security/dcfldd/work/dcfldd-1.3.4 *** [all] Error code 2 bmake: stopped making "all" in /tmp/work/security/dcfldd/work/dcfldd-1.3.4 bmake: 1 error bmake: stopped making "all" in /tmp/work/security/dcfldd/work/dcfldd-1.3.4 *** Error code 2 Stop. bmake[1]: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/security/dcfldd *** Error code 1 Stop. bmake: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/security/dcfldd