=> Bootstrap dependency digest>=20010302: found digest-20160304 ===> Building for xfishtank-2.2nb1 cc -O -I. -I./fishmaps -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -L/usr/pkg/lib -L/usr/X11R7/lib -Wl,-R/usr/X11R7/lib -Wl,-R/usr/pkg/lib -o makeh makeh.c -lm makeh.c:4:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] main() ^ makeh.c:16:3: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ makeh.c:16:3: note: include the header or explicitly provide a declaration for 'exit' makeh.c:23:22: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned int)' fishlist = (char **)malloc(numfish * sizeof(char *)); ^ makeh.c:23:22: note: include the header or explicitly provide a declaration for 'malloc' makeh.c:28:32: warning: implicitly declaring library function 'strlen' with type 'unsigned int (const char *)' fishlist[i] = (char *)malloc(strlen(prefix) + 1); ^ makeh.c:28:32: note: include the header or explicitly provide a declaration for 'strlen' makeh.c:29:3: warning: implicitly declaring library function 'strcpy' with type 'char *(char *, const char *)' strcpy(fishlist[i], prefix); ^ makeh.c:29:3: note: include the header or explicitly provide a declaration for 'strcpy' 5 warnings generated. ./makeh > xfishy.h cc -O -I. -I./fishmaps -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c xfish.c xfish.c:193:5: warning: implicitly declaring library function 'strcpy' with type 'char *(char *, const char *)' strcpy(sname, getenv("DISPLAY")); ^ xfish.c:193:5: note: include the header or explicitly provide a declaration for 'strcpy' xfish.c:221:10: warning: implicitly declaring library function 'strcmp' with type 'int (const char *, const char *)' if (strcmp(p, yess[i]) == 0) ^ xfish.c:221:10: note: include the header or explicitly provide a declaration for 'strcmp' xfish.c:839:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] erasebubble(b, s) ^ xfish.c:844:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ xfish.c:847:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] putbubble(b, s, c) ^ xfish.c:861:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ xfish.c:1059:15: warning: comparison between pointer and integer ('Colormap' (aka 'unsigned long') and 'void *') if (colormap == NULL) ~~~~~~~~ ^ ~~~~ xfish.c:1108:3: warning: implicit declaration of function 'MedianInit' is invalid in C99 [-Wimplicit-function-declaration] MedianInit(); ^ xfish.c:1641:13: warning: comparison between pointer and integer ('Pixmap' (aka 'unsigned long') and 'void *') if (PicMap == NULL) ~~~~~~ ^ ~~~~ xfish.c:2087:1: warning: return type of 'main' is not 'int' [-Wmain-return-type] void ^ xfish.c:2087:1: note: change return type to 'int' void ^~~~ int 10 warnings generated. cc -O -I. -I./fishmaps -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c medcut.c medcut.c:61:33: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned int)' hash_ptr = (struct color_rec *)malloc(sizeof(struct color_rec)); ^ medcut.c:61:33: note: include the header or explicitly provide a declaration for 'malloc' medcut.c:65:3: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit(1); ^ medcut.c:65:3: note: include the header or explicitly provide a declaration for 'exit' medcut.c:441:4: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration] free((char *)tptr); ^ 3 warnings generated. cc -O -I. -I./fishmaps -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c read.c read.c:29:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] dscan(fp, ip) ^ read.c:50:9: warning: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' exit (-1); ^ read.c:50:9: note: include the header or explicitly provide a declaration for 'exit' read.c:123:24: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned int)' Color_Vals = (char **)malloc(sizeof(char *) * Colors); ^ read.c:123:24: note: include the header or explicitly provide a declaration for 'malloc' read.c:190:21: warning: implicitly declaring library function 'rindex' with type 'char *(const char *, int)' if ((t = (char *)rindex(name_and_type, '_')) == NULL) ^ read.c:190:21: note: include the header or explicitly provide a declaration for 'rindex' read.c:198:22: warning: implicitly declaring library function 'index' with type 'char *(const char *, int)' if ((t2 = (char *)index(name_and_type, '[')) != NULL) ^ read.c:198:22: note: include the header or explicitly provide a declaration for 'index' read.c:202:9: warning: implicitly declaring library function 'strcmp' with type 'int (const char *, const char *)' if (!strcmp("pixels", t)) ^ read.c:202:9: note: include the header or explicitly provide a declaration for 'strcmp' read.c:256:9: warning: implicitly declaring library function 'strncmp' with type 'int (const char *, const char *, unsigned int)' if (strncmp(Color_Vals[k], line, CharsPP) == 0) ^ read.c:256:9: note: include the header or explicitly provide a declaration for 'strncmp' read.c:279:3: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration] free((char *)Color_Vals[i]); ^ read.c:310:7: warning: implicitly declaring library function 'strlen' with type 'unsigned int (const char *)' if (strlen(line) == (MAX_LINE - 1)) ^ read.c:310:7: note: include the header or explicitly provide a declaration for 'strlen' 9 warnings generated. cc -O -I. -I./fishmaps -I/usr/pkg/include -I /usr/X11R7/include -I/usr/X11R7/include -c gifread.c gifread.c:137:29: warning: implicitly declaring library function 'malloc' with type 'void *(unsigned int)' ptr = (unsigned char *) malloc(strlen(id) + 1); ^ gifread.c:137:29: note: include the header or explicitly provide a declaration for 'malloc' gifread.c:141:2: warning: implicit declaration of function 'free' is invalid in C99 [-Wimplicit-function-declaration] free(ptr); ^ gifread.c:278:12: warning: implicit declaration of function 'ReadCode' is invalid in C99 [-Wimplicit-function-declaration] Code = ReadCode(); ^ gifread.c:292:6: warning: implicit declaration of function 'AddToPixel' is invalid in C99 [-Wimplicit-function-declaration] AddToPixel(FinChar); ^ gifread.c:398:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] ReadCode() ^ gifread.c:412:1: warning: type specifier missing, defaults to 'int' [-Wimplicit-int] AddToPixel(Index) ^ gifread.c:463:1: warning: control reaches end of non-void function [-Wreturn-type] } ^ 7 warnings generated. bmake: don't know how to make /usr/pkg/lib/libXext.a. Stop bmake: stopped in /usr/pkgsrc/work/x11/xfishtank/work/xfishtank2.0 *** Error code 2 Stop. bmake[1]: stopped in /usr/pkgsrc/x11/xfishtank *** Error code 1 Stop. bmake: stopped in /usr/pkgsrc/x11/xfishtank