>>> Building on localhost under games/spatial DIST = [games/spatial:threedee.tar.Z] FULLPKGNAME = spatial-1.0.1p2 distfiles size=63063 >>> Running build in games/spatial at 1781641991.90 ===> games/spatial ===> Building from scratch spatial-1.0.1p3 ===> Verifying specs: X11 c m xcb ===> found X11.19.0 c.103.0 m.10.1 xcb.4.1 ===> Checking files for spatial-1.0.1p3 `/usr/ports/distfiles/threedee.tar.Z' is up to date. >> (SHA256) all files: OK ===> Extracting for spatial-1.0.1p3 ===> Patching for spatial-1.0.1p3 ===> Applying OpenBSD patch patch-spatial_deco_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: spatial/deco.c |--- spatial/deco.c.orig |+++ spatial/deco.c -------------------------- Patching file spatial/deco.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 45. done ===> Applying OpenBSD patch patch-spatial_disp_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- spatial/disp.c.orig Thu Aug 26 01:09:16 1993 |+++ spatial/disp.c Thu Sep 8 11:57:48 2005 -------------------------- Patching file spatial/disp.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 44. Hunk #3 succeeded at 442. done ===> Applying OpenBSD patch patch-spatial_game_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: spatial/game.c |--- spatial/game.c.orig |+++ spatial/game.c -------------------------- Patching file spatial/game.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 31. Hunk #3 succeeded at 121. Hunk #4 succeeded at 380. done ===> Applying OpenBSD patch patch-spatial_intro_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: spatial/intro.c |--- spatial/intro.c.orig |+++ spatial/intro.c -------------------------- Patching file spatial/intro.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 23. Hunk #3 succeeded at 63. Hunk #4 succeeded at 121. done ===> Applying OpenBSD patch patch-spatial_rots_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- spatial/rots.c.orig Mon Aug 23 20:45:55 1993 |+++ spatial/rots.c Wed Dec 5 15:03:28 2007 -------------------------- Patching file spatial/rots.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 25. Hunk #3 succeeded at 127. done ===> Applying OpenBSD patch patch-spatial_score_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- spatial/score.c.orig Fri Aug 27 21:49:34 1993 |+++ spatial/score.c Thu Sep 8 23:45:54 2005 -------------------------- Patching file spatial/score.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 16. Hunk #3 succeeded at 55. Hunk #4 succeeded at 102. Hunk #5 succeeded at 121. Hunk #6 succeeded at 144. Hunk #7 succeeded at 163. Hunk #8 succeeded at 183. done ===> Applying OpenBSD patch patch-spatial_spatial_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- spatial/spatial.c.orig Thu Aug 26 00:26:15 1993 |+++ spatial/spatial.c Wed Dec 5 15:03:28 2007 -------------------------- Patching file spatial/spatial.c using Plan A... Hunk #1 succeeded at 3. Hunk #2 succeeded at 13. done ===> Applying OpenBSD patch patch-spatial_spatial_h Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- spatial/spatial.h.orig Mon Aug 23 20:48:54 1993 |+++ spatial/spatial.h Thu Sep 8 23:42:22 2005 -------------------------- Patching file spatial/spatial.h using Plan A... Hunk #1 succeeded at 87. 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 spatial-1.0.1p3 ===> Configuring for spatial-1.0.1p3 ===> Building for spatial-1.0.1p3 cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c spatial.c spatial.c:21:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 21 | main(argc, argv) | ^ 1 warning generated. cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c disp.c disp.c:219:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 219 | void setup_one_fieldpm(fips) | ^ disp.c:260:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 260 | void draw_score(drw) | ^ disp.c:352:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 352 | void back_to_disp(all) | ^ disp.c:387:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 387 | void loadpieces(flname) | ^ 4 warnings generated. cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c game.c game.c:114:13: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] 114 | if (eventp = XCheckWindowEvent(dpy, win, evmasks, &event)) | ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ game.c:114:13: note: place parentheses around the assignment to silence this warning 114 | if (eventp = XCheckWindowEvent(dpy, win, evmasks, &event)) | ^ | ( ) game.c:114:13: note: use '==' to turn this assignment into an equality comparison 114 | if (eventp = XCheckWindowEvent(dpy, win, evmasks, &event)) | ^ | == 1 warning generated. cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c rots.c rots.c:82:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 82 | void rotate_piece(axis, theta) /* works on plist */ | ^ rots.c:188:5: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 188 | int collision(listflag) | ^ rots.c:255:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 255 | void add_cubie(cx, cy, cz) | ^ rots.c:263:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 263 | void add_one_cubie(fips, cx, cy, cz) | ^ rots.c:348:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 348 | void add_cubies(lev) | ^ rots.c:464:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 464 | void draw_curpiece(drw) | ^ 6 warnings generated. cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c intro.c cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c deco.c cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include -c score.c score.c:60:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 60 | void load_hscores(save) | ^ score.c:181:17: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] 181 | else if (tcp=XGetDefault(dpy, "spatial", "name")) { | ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ score.c:181:17: note: place parentheses around the assignment to silence this warning 181 | else if (tcp=XGetDefault(dpy, "spatial", "name")) { | ^ | ( ) score.c:181:17: note: use '==' to turn this assignment into an equality comparison 181 | else if (tcp=XGetDefault(dpy, "spatial", "name")) { | ^ | == 2 warnings generated. cc -O2 -pipe -DSCOREFILENAME=\"/usr/local/share/spatial/spatial.sco\" -DPIECEFILENAME=\"/usr/local/share/spatial/spatial.shp\" -I/usr/X11R6/include spatial.o disp.o game.o rots.o intro.o deco.o score.o -o spatial -L/usr/X11R6/lib -lX11 -lm ld: warning: deco.c(deco.o:(pauseloop)): warning: random() may return deterministic values, is that what you want? >>> Running package in games/spatial at 1781642004.91 ===> games/spatial ===> Faking installation for spatial-1.0.1p3 /usr/obj/ports/spatial-1.0.1/bin/install -c -s -m 755 /usr/obj/ports/spatial-1.0.1/threedee/spatial/spatial /usr/obj/ports/spatial-1.0.1/fake-aarch64/usr/local/bin /usr/obj/ports/spatial-1.0.1/bin/install -c -m 644 /usr/obj/ports/spatial-1.0.1/threedee/spatial/spatial.6 /usr/obj/ports/spatial-1.0.1/fake-aarch64/usr/local/man/man6 /usr/obj/ports/spatial-1.0.1/bin/install -d -m 755 /usr/obj/ports/spatial-1.0.1/fake-aarch64/usr/local/share/spatial /usr/obj/ports/spatial-1.0.1/bin/install -c -m 644 /usr/obj/ports/spatial-1.0.1/threedee/spatial/spatial.shp /usr/obj/ports/spatial-1.0.1/fake-aarch64/usr/local/share/spatial/spatial.shp ===> Building package for spatial-1.0.1p3 Create /usr/ports/packages/aarch64/all/spatial-1.0.1p3.tgz Creating package spatial-1.0.1p3 reading plist| checking dependencies| checksumming| | 0%*** | 4%** | 9%*** | 13%*** | 17%** | 22%*** | 26%*** | 30%** | 35%*** | 39%*** | 43%** | 48%*** | 52%** | 57%*** | 61%*** | 65%** | 70%*** | 74%*** | 78%** | 83%*** | 87%*** | 91%** | 96%***|100%  archiving| | 0%**************************************************** | 82%*** | 85%*********|100% Link to /usr/ports/packages/aarch64/ftp/spatial-1.0.1p3.tgz >>> Running clean in games/spatial at 1781642015.15 ===> games/spatial ===> Cleaning for spatial-1.0.1p3 >>> Ended at 1781642016.14 max_stuck=4.60/build=12.94/package=10.25/clean=1.13