=> Bootstrap dependency digest>=20010302: found digest-20160304 ===> Building for xxgdb-1.12nb2 cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c calldbx.c calldbx.c:363:2: warning: implicit declaration of function 'ioctl' is invalid in C99 [-Wimplicit-function-declaration] ioctl(0, TIOCSCTTY, 0); ^ 1 warning generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c command.c command.c:363:3: warning: implicit declaration of function 'signal_interrupt_dbx' is invalid in C99 [-Wimplicit-function-declaration] signal_interrupt_dbx (); ^ command.c:373:5: warning: implicit declaration of function 'StartEditor' is invalid in C99 [-Wimplicit-function-declaration] StartEditor(); ^ command.c:402:11: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types] wait3(&status, WNOHANG, NULL); ^~~~~~~ /usr/include/sys/wait.h:179:18: note: passing argument to parameter here pid_t wait3(int *, int, struct rusage *) __RENAME(__wait350); ^ 3 warnings generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c dbx.c dbx.c:104:12: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] if (fp = fopen(xdbxinit, "r")) { ~~~^~~~~~~~~~~~~~~~~~~~~~ dbx.c:104:12: note: place parentheses around the assignment to silence this warning if (fp = fopen(xdbxinit, "r")) { ^ ( ) dbx.c:104:12: note: use '==' to turn this assignment into an equality comparison if (fp = fopen(xdbxinit, "r")) { ^ == dbx.c:127:12: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] static visited = False; ~~~~~~ ^ dbx.c:168:14: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] while (more = fgets(s, LINESIZ, dbxfp) && !Prompt) { ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ dbx.c:168:14: note: place parentheses around the assignment to silence this warning while (more = fgets(s, LINESIZ, dbxfp) && !Prompt) { ^ ( ) dbx.c:168:14: note: use '==' to turn this assignment into an equality comparison while (more = fgets(s, LINESIZ, dbxfp) && !Prompt) { ^ == dbx.c:231:4: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(-1); ^ dbx.c:231:4: note: include the header or explicitly provide a declaration for 'exit' dbx.c:259:18: warning: too few arguments in call to 'read_dbx' read_dbx(); ~~~~~~~~ ^ 5 warnings generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c dialog.c cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c datadpy.c cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c filemenu.c filemenu.c:232:13: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] extern alphasort(); ~~~~~~ ^ 1 warning generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c handler.c cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c parser.c In file included from parser.c:88: ./bsd_regex.h:61:9: warning: 'O_SEARCH' macro redefined [-Wmacro-redefined] #define O_SEARCH 8 ^ /usr/include/fcntl.h:121:9: note: previous definition is here #define O_SEARCH 0x00800000 /* skip search permission checks */ ^ 1 warning generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c regex.c regex.c:698:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ regex.c:717:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ regex.c:758:15: warning: enumeration values 'unused', 'syntaxspec', and 'notsyntaxspec' not handled in switch [-Wswitch] switch ((enum regexpcode) *p++) ^ regex.c:1220:15: warning: 6 enumeration values not handled in switch: 'unused', 'before_dot', 'at_dot'... [-Wswitch] switch ((enum regexpcode) *p++) ^ 4 warnings generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c signs.c signs.c:302:10: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare] if (i>=0 && ilines) ~^ ~ signs.c:308:15: warning: address of array 'arrow.file' will always evaluate to 'true' [-Wpointer-bool-conversion] if (arrow.file && !strcmp(arrow.file, file->pathname) && ~~~~~~^~~~ ~~ signs.c:338:16: warning: address of array 'updown.file' will always evaluate to 'true' [-Wpointer-bool-conversion] if (updown.file && !strcmp(updown.file, arrow.file) && ~~~~~~~^~~~ ~~ signs.c:345:10: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare] if (i>=0 && ilines) ~^ ~ signs.c:351:16: warning: address of array 'updown.file' will always evaluate to 'true' [-Wpointer-bool-conversion] if (updown.file && !strcmp(updown.file, file->pathname) && ~~~~~~~^~~~ ~~ signs.c:378:10: warning: comparison of unsigned expression >= 0 is always true [-Wtautological-compare] if (i>=0 && ilines) ~^ ~ signs.c:384:14: warning: address of array 'bomb.file' will always evaluate to 'true' [-Wpointer-bool-conversion] if (bomb.file && !strcmp(bomb.file, file->pathname) && ~~~~~^~~~ ~~ 7 warnings generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c signals.c signals.c:89:5: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(sig); ^ signals.c:89:5: note: include the header or explicitly provide a declaration for 'exit' signals.c:112:17: warning: incompatible pointer types passing 'union wait *' to parameter of type 'int *' [-Wincompatible-pointer-types] pid = wait3(&status, WNOHANG|WUNTRACED, NULL); ^~~~~~~ /usr/include/sys/wait.h:179:18: note: passing argument to parameter here pid_t wait3(int *, int, struct rusage *) __RENAME(__wait350); ^ 2 warnings generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c source.c source.c:363:8: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] extern PopupSearch(); ~~~~~~ ^ 1 warning generated. cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c utils.c cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c windows.c cc -O -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c xdbx.c xdbx.c:294:5: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ xdbx.c:294:5: note: include the header or explicitly provide a declaration for 'exit' xdbx.c:364:42: warning: implicit declaration of function 'getenv' is invalid in C99 [-Wimplicit-function-declaration] sprintf(xdbxinit, "%s/%s", (char *) getenv("HOME"), ".dbxinit"); ^ xdbx.c:438:26: warning: implicit declaration of function 'mktemp' is invalid in C99 [-Wimplicit-function-declaration] dbxargv[i++] = (char *) mktemp(temp); ^ xdbx.c:461:1: warning: return type of 'main' is not 'int' [-Wmain-return-type] void main(argc, argv) ^ xdbx.c:461:1: note: change return type to 'int' void main(argc, argv) ^~~~ int 4 warnings generated. bmake: don't know how to make /usr/pkg/lib/libXaw.a. Stop bmake: stopped in /usr/pkgsrc/work/devel/xxgdb/work/xxgdb-1.12 *** Error code 2 Stop. bmake[1]: stopped in /usr/pkgsrc/devel/xxgdb *** Error code 1 Stop. bmake: stopped in /usr/pkgsrc/devel/xxgdb