>>> Building on exopi-4 under x11/xdu BDEPENDS = [devel/imake-cf;devel/imake] DIST = [x11/xdu:xdu-3.0.tar.Z] FULLPKGNAME = xdu-3.0p4 (Junk lock obtained for exopi-4 at 1764751943.90) >>> Running depends in x11/xdu at 1764751943.95 last junk was in mail/xlbiff /usr/sbin/pkg_add -aI -Drepair imake-1.0.10 imake-cf-1.0.8 was: /usr/sbin/pkg_add -aI -Drepair imake-1.0.10 imake-cf-1.0.8 /usr/sbin/pkg_add -aI -Drepair imake-1.0.10 imake-cf-1.0.8 >>> Running show-prepare-results in x11/xdu at 1764751945.59 ===> x11/xdu ===> Building from scratch xdu-3.0p4 ===> xdu-3.0p4 depends on: imake-* -> imake-1.0.10 ===> xdu-3.0p4 depends on: imake-cf-* -> imake-cf-1.0.8 ===> Verifying specs: ICE SM X11 Xau Xdmcp Xaw Xext Xmu Xpm Xt c ===> found ICE.12.0 SM.9.0 X11.19.0 Xau.10.0 Xdmcp.11.0 Xaw.16.0 Xext.13.0 Xmu.11.0 Xpm.10.0 Xt.11.1 c.102.2 imake-1.0.10 imake-cf-1.0.8 (Junk lock released for exopi-4 at 1764751946.46) distfiles size=20114 >>> Running build in x11/xdu at 1764751946.50 ===> x11/xdu ===> Checking files for xdu-3.0p4 `/exopi-cvs/ports/distfiles/xdu-3.0.tar.Z' is up to date. >> (SHA256) all files: OK ===> Extracting for xdu-3.0p4 ===> Patching for xdu-3.0p4 ===> Applying OpenBSD patch patch-xdu_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- xdu.c.orig Sun Jun 5 21:29:23 1994 |+++ xdu.c Fri Oct 26 22:44:33 2007 -------------------------- Patching file xdu.c using Plan A... Hunk #1 succeeded at 235. Hunk #2 succeeded at 245. Hunk #3 succeeded at 280. Hunk #4 succeeded at 300. Hunk #5 succeeded at 412. done ===> Applying OpenBSD patch patch-xwin_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- xwin.c.orig Thu Apr 27 22:50:04 2017 |+++ xwin.c Thu Apr 27 22:50:44 2017 -------------------------- Patching file xwin.c using Plan A... Hunk #1 succeeded at 50. Hunk #2 succeeded at 377. done ===> Compiler link: clang -> /usr/bin/clang ===> Compiler link: clang++ -> /usr/bin/clang++ ===> Compiler link: cc -> /usr/bin/cc ===> Compiler link: c++ -> /usr/bin/c++ ===> Generating configure for xdu-3.0p4 ===> Configuring for xdu-3.0p4 imake -DPorts -DUseInstalled -I/usr/local/lib/X11/config make Makefiles make includes make depend rm -f .depend gccmakedep -f- -- -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -- xdu.c xwin.c > .depend ===> Building for xdu-3.0p4 cc -O2 -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c xdu.c xdu.c:37:8: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 37 | extern nodeinfo(), helpinfo(); | ~~~~~~ ^ | int xdu.c:37:20: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 37 | extern nodeinfo(), helpinfo(); | ~~~~~~ ^ | int xdu.c:98:28: warning: passing arguments to 'calloc' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 98 | np = (struct node *)calloc(1,sizeof(struct node)); | ^ xdu.c:99:19: warning: passing arguments to 'strdup' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 99 | np->name = strdup(name); | ^ xdu.c:92:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 92 | makenode(name,size) | ^ xdu.c:112:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 112 | findnode(treep, x, y) | ^ xdu.c:140:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 140 | numchildren(nodep) | ^ xdu.c:161:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 161 | fix_tree(top) | ^ xdu.c:194:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 194 | main(argc,argv) | ^ | int xdu.c:198:19: warning: passing arguments to 'strdup' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 198 | top.name = strdup("[root]"); | ^ xdu.c:201:8: warning: passing arguments to 'xsetup' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 201 | xsetup(&argc,argv); | ^ xdu.c:203:7: warning: call to undeclared function 'isatty'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 203 | if (isatty(fileno(stdin))) { | ^ xdu.c:204:20: warning: format string is not a string literal (potentially insecure) [-Wformat-security] 204 | fprintf(stderr, usage); | ^~~~~ xdu.c:204:20: note: treat the string as an argument to avoid this 204 | fprintf(stderr, usage); | ^ | "%s", xdu.c:205:4: warning: call to undeclared library function 'exit' with type 'void (int) __attribute__((noreturn))'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 205 | exit(1); | ^ xdu.c:205:4: note: include the header or explicitly provide a declaration for 'exit' xdu.c:207:14: warning: passing arguments to 'parse_file' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 207 | parse_file("-"); | ^ xdu.c:209:26: warning: call to undeclared library function 'strcmp' with type 'int (const char *, const char *)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 209 | } else if (argc == 2 && strcmp(argv[1],"-help") != 0) { | ^ xdu.c:209:26: note: include the header or explicitly provide a declaration for 'strcmp' xdu.c:210:13: warning: passing arguments to 'parse_file' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 210 | parse_file(argv[1]); | ^ xdu.c:212:19: warning: format string is not a string literal (potentially insecure) [-Wformat-security] 212 | fprintf(stderr, usage); | ^~~~~ xdu.c:212:19: note: treat the string as an argument to avoid this 212 | fprintf(stderr, usage); | ^ | "%s", xdu.c:219:11: warning: passing arguments to 'sorttree' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 219 | sorttree(&top, order); | ^ xdu.c:194:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 194 | main(argc,argv) | ^ xdu.c:251:16: warning: call to undeclared library function 'isspace' with type 'int (int)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 251 | while (*p && isspace(*p)) p++; | ^ xdu.c:251:16: note: include the header or explicitly provide a declaration for 'isspace' xdu.c:252:10: warning: call to undeclared function 'atoi'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 252 | size = atoi(p); | ^ xdu.c:260:14: warning: passing arguments to 'parse_entry' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 260 | parse_entry(name,size); | ^ xdu.c:231:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 231 | parse_file(filename) | ^ xdu.c:43:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 43 | void parse_file(); | ^ xdu.c:280:11: warning: call to undeclared library function 'strlen' with type 'unsigned long (const char *)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 280 | length = strlen(name); | ^ xdu.c:280:11: note: include the header or explicitly provide a declaration for 'strlen' xdu.c:287:2: warning: call to undeclared library function 'bzero' with type 'void (void *, unsigned long)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 287 | bzero(path,sizeof(path)); | ^ xdu.c:287:2: note: include the header or explicitly provide a declaration for 'bzero' xdu.c:289:15: warning: comparison between pointer and integer ('char' and 'void *') [-Wpointer-integer-compare] 289 | while (*name != NULL) { | ~~~~~ ^ ~~~~ xdu.c:292:24: warning: passing arguments to 'strdup' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 292 | path[arg++] = strdup(buf); | ^ xdu.c:305:23: warning: passing arguments to 'strdup' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 305 | path[arg++] = strdup(buf); | ^ xdu.c:309:9: warning: passing arguments to 'addtree' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 309 | addtree(&top,path,size); | ^ xdu.c:268:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 268 | parse_entry(name,size) | ^ xdu.c:44:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 44 | void parse_entry(); | ^ xdu.c:320:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 320 | compare(n1,n2,order) | ^ xdu.c:363:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 363 | insertchild(nodep,childp,order) | ^ xdu.c:406:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 406 | addtree(top, path, size) | ^ xdu.c:42:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 42 | void addtree(); | ^ xdu.c:455:30: warning: format specifies type 'int' but the argument has type 'long' [-Wformat] 455 | printf("%s %d\n", np->name, np->size); | ~~ ^~~~~~~~ | %ld xdu.c:445:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 445 | dumptree(np,level) | ^ xdu.c:45:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 45 | void dumptree(); | ^ xdu.c:462:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 462 | sorttree(np, order) | ^ xdu.c:47:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 47 | void sorttree(); | ^ xdu.c:501:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 501 | drawnode(nodep, rect) | ^ | int xdu.c:509:11: warning: passing arguments to 'xdrawrect' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 509 | xdrawrect(nodep->name, nodep->size, | ^ xdu.c:523:2: warning: call to undeclared function 'drawchildren'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 523 | drawchildren(nodep, subrect); | ^ xdu.c:501:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 501 | drawnode(nodep, rect) | ^ xdu.c:524:1: warning: non-void function does not return a value [-Wreturn-type] 524 | } | ^ xdu.c:530:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 530 | drawchildren(nodep, rect) | ^ | int xdu.c:563:13: warning: passing arguments to 'xdrawrect' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 563 | xdrawrect(np->name, np->size, | ^ xdu.c:530:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 530 | drawchildren(nodep, rect) | ^ xdu.c:582:1: warning: non-void function does not return a value [-Wreturn-type] 582 | } | ^ xdu.c:589:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 589 | clearrects(nodep) | ^ xdu.c:46:6: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 46 | void clearrects(); | ^ xdu.c:608:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 608 | pwd() | ^ | int xdu.c:630:3: warning: call to undeclared library function 'strcat' with type 'char *(char *, const char *)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 630 | strcat(path,stack[num]->name); | ^ xdu.c:630:3: note: include the header or explicitly provide a declaration for 'strcat' xdu.c:634:35: warning: format specifies type 'int' but the argument has type 'long' [-Wformat] 634 | printf("%s %d (%.2f%%)\n", path, topp->size, | ~~ ^~~~~~~~~~ | %ld xdu.c:636:1: warning: non-void function does not return a value [-Wreturn-type] 636 | } | ^ xdu.c:646:13: warning: passing arguments to 'malloc' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 646 | cp = malloc(n+1); | ^ xdu.c:647:2: warning: call to undeclared library function 'strcpy' with type 'char *(char *, const char *)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 647 | strcpy(cp,s); | ^ xdu.c:647:2: note: include the header or explicitly provide a declaration for 'strcpy' xdu.c:639:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 639 | strdup(s) | ^ xdu.c:41:7: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 41 | char *strdup(); | ^ xdu.c:655:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 655 | press(x,y) | ^ xdu.c:36:12: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 36 | extern int press(), reset(), repaint(), setorder(), reorder(); | ^ xdu.c:673:1: warning: non-void function does not return a value [-Wreturn-type] 673 | } | ^ xdu.c:682:1: warning: non-void function does not return a value [-Wreturn-type] 682 | } | ^ xdu.c:685:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 685 | repaint(width,height) | ^ xdu.c:36:30: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 36 | extern int press(), reset(), repaint(), setorder(), reorder(); | ^ xdu.c:701:1: warning: non-void function does not return a value [-Wreturn-type] 701 | } | ^ xdu.c:704:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 704 | setorder(op) | ^ xdu.c:36:41: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 36 | extern int press(), reset(), repaint(), setorder(), reorder(); | ^ xdu.c:743:1: warning: non-void function does not return a value [-Wreturn-type] 743 | } | ^ xdu.c:746:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 746 | reorder(op) | ^ xdu.c:36:53: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 36 | extern int press(), reset(), repaint(), setorder(), reorder(); | ^ xdu.c:752:1: warning: non-void function does not return a value [-Wreturn-type] 752 | } | ^ xdu.c:764:23: warning: format specifies type 'int' but the argument has type 'long' [-Wformat] 764 | printf("%-8d %s\n", np->size, np->name); | ~~~~ ^~~~~~~~ | %-8ld xdu.c:766:1: warning: non-void function does not return a value [-Wreturn-type] 766 | } | ^ xdu.c:783:1: warning: non-void function does not return a value [-Wreturn-type] 783 | } | ^ 77 warnings generated. cc -O2 -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c xwin.c xwin.c:159:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 159 | static void a_quit(w, event, params, num_params) | ^ xwin.c:108:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 108 | static void a_quit(); | ^ xwin.c:175:7: warning: passing arguments to 'press' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 175 | press(event->xbutton.x, event->xbutton.y); | ^ xwin.c:169:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 169 | static void a_goto(w, event, params, num_params) | ^ xwin.c:106:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 106 | static void a_goto(); | ^ xwin.c:178:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 178 | static void a_reset(w, event, params, num_params) | ^ xwin.c:107:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 107 | static void a_reset(); | ^ xwin.c:196:10: warning: passing arguments to 'reorder' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 196 | reorder(*params); | ^ xwin.c:187:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 187 | static void a_reorder(w, event, params, num_params) | ^ xwin.c:109:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 109 | static void a_reorder(); | ^ xwin.c:200:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 200 | static void a_size(w, event, params, num_params) | ^ xwin.c:110:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 110 | static void a_size(); | ^ xwin.c:213:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 213 | static void a_ncol(w, event, params, num_params) | ^ xwin.c:111:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 111 | static void a_ncol(); | ^ xwin.c:234:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 234 | static void a_info(w, event, params, num_params) | ^ xwin.c:112:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 112 | static void a_info(); | ^ xwin.c:243:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 243 | static void a_help(w, event, params, num_params) | ^ xwin.c:113:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 113 | static void a_help(); | ^ xwin.c:253:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 253 | static void a_removehelp(w, event, params, num_params) | ^ xwin.c:114:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 114 | static void a_removehelp(); | ^ xwin.c:264:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 264 | static void c_resize(w, data, event, continue_to_dispatch) | ^ xwin.c:274:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 274 | static void c_repaint(w, data, event, continue_to_dispatch) | ^ xwin.c:348:10: warning: passing arguments to 'setorder' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 348 | setorder(res.order); | ^ xwin.c:299:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 299 | xsetup(argcp, argv) | ^ xwin.c:48:12: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 48 | extern int xsetup(); | ^ xwin.c:350:1: warning: non-void function does not return a value [-Wreturn-type] 350 | } | ^ xwin.c:352:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 352 | xmainloop() | ^ | int xwin.c:358:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 358 | xclear() | ^ | int xwin.c:361:1: warning: non-void function does not return a value [-Wreturn-type] 361 | } | ^ xwin.c:363:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 363 | xrepaint() | ^ | int xwin.c:369:9: warning: passing arguments to 'repaint' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 369 | repaint(xwa.width, xwa.height); | ^ xwin.c:370:1: warning: non-void function does not return a value [-Wreturn-type] 370 | } | ^ xwin.c:372:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 372 | xrepaint_noclear() | ^ | int xwin.c:377:9: warning: passing arguments to 'repaint' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 377 | repaint(xwa.width, xwa.height); | ^ xwin.c:378:1: warning: non-void function does not return a value [-Wreturn-type] 378 | } | ^ xwin.c:381:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 381 | xdrawrect(name, size, x, y, width, height) | ^ xwin.c:53:13: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C23, conflicting with a subsequent definition [-Wdeprecated-non-prototype] 53 | extern void xdrawrect(); | ^ 37 warnings generated. rm -f xdu cc -o xdu -O2 -L/usr/X11R6/lib -L/usr/local/lib xdu.o xwin.o -lXaw -lXmu -lXt -lSM -lICE -lXpm -lXext -lX11 -lXdmcp -lXau -Wl,-rpath,/usr/local/lib ld: warning: xwin.c(xwin.o:(xdrawrect)): warning: sprintf() is often misused, please use snprintf() ld: warning: xdu.c(xdu.o:(makenode)): warning: strcpy() is almost always misused, please use strlcpy() ld: warning: xdu.c(xdu.o:(pwd)): warning: strcat() is almost always misused, please use strlcat() rm -f xdu._man if test -z "" ; then cd `dirname xdu` && ln -s `basename xdu.man` `basename xdu._man`; else /usr/libexec/cpp -undef -traditional -D__apploaddir__=/usr/local/lib/X11/app-defaults -D__appmansuffix__=1 -D__filemansuffix__=5 -D__libmansuffix__=3 -D__miscmansuffix__=7 -D__drivermansuffix__=4 -D__adminmansuffix__=8 -D__projectroot__=/usr/X11R6 -D__xconfigfile__=xorg.conf -D__xconfigdir__=/usr/local/lib/X11 -D__xlogfile__=Xorg -D__xservername__=Xorg -D__xorgversion__="\"`echo 7 7 0 | sed -e 's/ /./g' -e 's/^/Version\\\ /'`\" \"X Version 11\"" -D__vendorversion__="`echo 7 7 0 | sed -e 's/ /./g' -e 's/^/Version\\\ /'` X.Org" < xdu.man | sed -e '/^# *[0-9][0-9]* *.*$/d' -e '/^#line *[0-9][0-9]* *.*$/d' -e '/^[ ]*XCOMM$/s/XCOMM/#/' -e '/^[ ]*XCOMM[^a-zA-Z0-9_]/s/XCOMM/#/' -e '/^[ ]*XHASH/s/XHASH/#/' -e '/\@\@$/s/\@\@$/\\/' >xdu._man; fi >>> Running package in x11/xdu at 1764751948.43 ===> x11/xdu ===> Faking installation for xdu-3.0p4 install -c xdu /exopi-obj/pobj/xdu-3.0/fake-amd64/usr/local/bin/xdu + mkdir -p /exopi-obj/pobj/xdu-3.0/fake-amd64/etc/X11/app-defaults install -c -m 0444 XDu.ad /exopi-obj/pobj/xdu-3.0/fake-amd64/usr/local/lib/X11/app-defaults/XDu install in . done install -c -m 0444 xdu._man /exopi-obj/pobj/xdu-3.0/fake-amd64/usr/local/man/man1/xdu.1 install.man in . done ===> Building package for xdu-3.0p4 Create /exopi-cvs/ports/packages/amd64/all/xdu-3.0p4.tgz Creating package xdu-3.0p4 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|*** | 5% checksumming|****** | 10% checksumming|********* | 14% checksumming|************ | 19% checksumming|*************** | 24% checksumming|***************** | 29% checksumming|******************** | 33% checksumming|*********************** | 38% checksumming|************************** | 43% checksumming|***************************** | 48% checksumming|******************************** | 52% checksumming|*********************************** | 57% checksumming|************************************** | 62% checksumming|***************************************** | 67% checksumming|******************************************** | 71% checksumming|********************************************** | 76% checksumming|************************************************* | 81% checksumming|**************************************************** | 86% checksumming|******************************************************* | 90% checksumming|********************************************************** | 95% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving| | 1% archiving|****************************************************** | 85% archiving|******************************************************* | 86% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/xdu-3.0p4.tgz >>> Running clean in x11/xdu at 1764751950.09 ===> x11/xdu ===> Cleaning for xdu-3.0p4 >>> Ended at 1764751950.47 max_stuck=0.78/depends=1.64/show-prepare-results=0.91/build=1.92/package=1.66/clean=0.44