>>> Building on exopi-2 under misc/xgas BDEPENDS = [devel/imake-cf;devel/imake] DIST = [misc/xgas:xgas.tar.gz] FULLPKGNAME = xgas-1.0p4 (Junk lock obtained for exopi-2 at 1764960544.98) >>> Running depends in misc/xgas at 1764960545.04 last junk was in fonts/zh-kcfonts /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 misc/xgas at 1764960549.05 ===> misc/xgas ===> Building from scratch xgas-1.0p4 ===> xgas-1.0p4 depends on: imake-* -> imake-1.0.10 ===> xgas-1.0p4 depends on: imake-cf-* -> imake-cf-1.0.8 ===> Verifying specs: ICE SM X11 Xau Xdmcp Xaw Xext Xmu Xt c m xcb ===> 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 Xt.11.1 c.102.2 m.10.1 xcb.4.1 imake-1.0.10 imake-cf-1.0.8 (Junk lock released for exopi-2 at 1764960552.07) distfiles size=35456 >>> Running build in misc/xgas at 1764960552.17 ===> misc/xgas ===> Checking files for xgas-1.0p4 `/exopi-cvs/ports/distfiles/xgas.tar.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for xgas-1.0p4 ===> Patching for xgas-1.0p4 ===> Applying OpenBSD patch patch-chamber_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: chamber.c |--- chamber.c.orig |+++ chamber.c -------------------------- Patching file chamber.c using Plan A... Hunk #1 succeeded at 24. done ===> Applying OpenBSD patch patch-xgas_h Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |Index: xgas.h |--- xgas.h.orig |+++ xgas.h -------------------------- Patching file xgas.h using Plan A... Hunk #1 succeeded at 17. 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 xgas-1.0p4 ===> Configuring for xgas-1.0p4 imake -DPorts -DUseInstalled -I/usr/local/lib/X11/config make Makefiles make includes make depend rm -f .depend gccmakedep -f- -- -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -- main.c dynamics.c chamber.c timestep.c molecule.c util.c help.c XGas.c doc.c quick.c man.c > .depend ===> Building for xgas-1.0p4 cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c main.c main.c:81:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 81 | main( argc, argv ) | ^ | int main.c:146:3: warning: call to undeclared function 'createHelpWidgets'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 146 | createHelpWidgets( help ); | ^ main.c:196:10: warning: passing arguments to 'labInit' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 196 | labInit( lab, &labData); | ^ main.c:81:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 81 | main( argc, argv ) | ^ 4 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c dynamics.c dynamics.c:21:9: warning: passing arguments to 'collide' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 21 | collide( mol, data ); | ^ dynamics.c:22:19: warning: passing arguments to 'findNextCollision' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 22 | findNextCollision( mol, data); | ^ dynamics.c:24:12: warning: passing arguments to 'inertia' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 24 | inertia( mol, data ); | ^ dynamics.c:15:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 15 | void dynamics( mol, data ) | ^ In file included from dynamics.c:8: ./xgas.h:127: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] 127 | void dynamics(); | ^ dynamics.c:28:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 28 | static void inertia( mol, data) | ^ dynamics.c:9: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] 9 | static void inertia(); | ^ dynamics.c:61:30: warning: passing arguments to 'whichCorner' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 61 | if ((corner = whichCorner( mol->collisionPos.x, mol->collisionPos.y, | ^ dynamics.c:81:34: warning: passing arguments to 'frand' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 81 | if (corner) thetaRand = frand( 0.0, M_PI_2); | ^ dynamics.c:82:27: warning: passing arguments to 'frand' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 82 | else thetaRand = frand( -M_PI_2, M_PI_2); | ^ dynamics.c:92:30: warning: passing arguments to 'vEquilibrium' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 92 | vMagnitude = vEquilibrium( mol->temperature); | ^ dynamics.c:44:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 44 | static void collide( mol, data) | ^ dynamics.c:10: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] 10 | static void collide(); | ^ dynamics.c:125:16: warning: passing arguments to 'hitHole' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 125 | if( hitHole( mol, &data->chamber[box].walls[0], data) > 0.0) { | ^ dynamics.c:137:22: warning: passing arguments to 'hit' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 137 | && (( deltaT = hit( mol, &data->chamber[box].walls[i])) | ^ dynamics.c:144:2: warning: call to undeclared function 'error'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 144 | error("In findNextCollision(): couldn't find a wall to hit.", | ^ dynamics.c:109:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 109 | void findNextCollision( mol, data) | ^ In file included from dynamics.c:8: ./xgas.h:126: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] 126 | void findNextCollision(); | ^ dynamics.c:221:2: warning: call to undeclared function 'error'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 221 | error(" In hit, illegal wall type.", 0); | ^ dynamics.c:167:15: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 167 | static double hit( mol, wall) | ^ dynamics.c:11:15: 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] 11 | static double hit(); | ^ dynamics.c:231:15: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 231 | static double hitHole( mol, wall, data) | ^ dynamics.c:12:15: 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] 12 | static double hitHole(); | ^ 23 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c chamber.c chamber.c:16:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 16 | void labInit(w, data) | ^ In file included from chamber.c:7: ./xgas.h:134: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] 134 | void labInit(); | ^ chamber.c:76:21: warning: passing arguments to 'getLabDimensions' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 76 | getLabDimensions( w, data); | ^ chamber.c:88:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 88 | initWall( &data->chamber[0].walls[0], p[6], p[7], RIGHT); | ^ chamber.c:89:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 89 | initWall( &data->chamber[0].walls[1], p[2], p[6], RIGHT); | ^ chamber.c:90:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 90 | initWall( &data->chamber[0].walls[2], p[0], p[2], TOP); | ^ chamber.c:91:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 91 | initWall( &data->chamber[0].walls[3], p[0], p[1], LEFT); | ^ chamber.c:92:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 92 | initWall( &data->chamber[0].walls[4], p[1], p[3], BOTTOM); | ^ chamber.c:93:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 93 | initWall( &data->chamber[0].walls[5], p[7], p[3], RIGHT); | ^ chamber.c:95:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 95 | initWall( &data->chamber[1].walls[0], p[6], p[7], LEFT); | ^ chamber.c:96:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 96 | initWall( &data->chamber[1].walls[1], p[2], p[6], LEFT); | ^ chamber.c:97:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 97 | initWall( &data->chamber[1].walls[2], p[2], p[4], TOP); | ^ chamber.c:98:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 98 | initWall( &data->chamber[1].walls[3], p[4], p[5], RIGHT); | ^ chamber.c:99:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 99 | initWall( &data->chamber[1].walls[4], p[3], p[5], BOTTOM); | ^ chamber.c:100:13: warning: passing arguments to 'initWall' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 100 | initWall( &data->chamber[1].walls[5], p[7], p[3], LEFT); | ^ chamber.c:62:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 62 | void labResize(w, data, call_data) /* ARGSUSED */ | ^ In file included from chamber.c:7: ./xgas.h:135: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] 135 | void labResize(); | ^ chamber.c:104:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 104 | static void initWall( wall, end0, end1, type) | ^ chamber.c:8: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] 8 | static void initWall(); | ^ chamber.c:120:5: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 120 | int whichCorner( x, y, box, data ) | ^ In file included from chamber.c:7: ./xgas.h:133: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] 133 | int whichCorner(); | ^ chamber.c:153:13: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 153 | static void getLabDimensions( w, data) | ^ chamber.c:9: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] 9 | static void getLabDimensions(); | ^ chamber.c:192:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 192 | void labExpose( w, data, event) /* ARGSUSED */ | ^ In file included from chamber.c:7: ./xgas.h:136: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] 136 | void labExpose(); | ^ 25 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c timestep.c timestep.c:18:16: warning: passing arguments to 'oneTimestep' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 18 | oneTimestep( data->lab, data); | ^ timestep.c:14:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 14 | void doTimestep( data, id) /* ARGSUSED */ | ^ In file included from timestep.c:6: ./xgas.h:128: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] 128 | void doTimestep(); | ^ timestep.c:43:10: warning: passing arguments to 'dynamics' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 43 | dynamics( &data->molecules[i], data); | ^ timestep.c:31:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 31 | void oneTimestep( w, data) /* ARGSUSED */ | ^ In file included from timestep.c:6: ./xgas.h:131: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] 131 | void oneTimestep(); | ^ timestep.c:86:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 86 | void run_callback(w, data, call_data) /* ARGSUSED */ | ^ In file included from timestep.c:6: ./xgas.h:129: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] 129 | void run_callback(); | ^ timestep.c:98:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 98 | void pause_callback(w, data, call_data) /* ARGSUSED */ | ^ In file included from timestep.c:6: ./xgas.h:130: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] 130 | void pause_callback(); | ^ 10 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c molecule.c molecule.c:51:18: warning: passing arguments to 'frand' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 51 | theta = frand( 0.0, TWO_PI); | ^ molecule.c:54:21: warning: passing arguments to 'vEquilibrium' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 54 | v = vEquilibrium( mol->temperature); | ^ molecule.c:85:2: warning: call to undeclared function 'error'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 85 | error("In addMolecule(): couldn't pick a box.", 0); | ^ molecule.c:90:22: warning: passing arguments to 'findNextCollision' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 90 | findNextCollision( mol, data); | ^ molecule.c:24:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 24 | void addMolecule( w, data, event) | ^ molecule.c:108:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 108 | void addMolecules( w, data, event) | ^ In file included from molecule.c:8: ./xgas.h:137: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] 137 | void addMolecules(); | ^ cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c util.c 7 warnings generated. util.c:35:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 35 | float vEquilibrium( temperature) | ^ In file included from util.c:28: ./xgas.h:139:8: 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] 139 | float vEquilibrium(); | ^ util.c:42:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 42 | void changeTemp( w, chamber, sliderpos) /* ARGSUSED */ | ^ In file included from util.c:28: ./xgas.h:138: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] 138 | void changeTemp(); | ^ util.c:65:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 65 | float frand(min, max) | ^ In file included from util.c:28: ./xgas.h:140:8: 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] 140 | float frand(); | ^ util.c:79:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 79 | error( message, time) | ^ | int util.c:79:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] util.c:91:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 91 | void quit_callback(w, client_data, call_data) /* ARGSUSED */ | ^ In file included from util.c:28: ./xgas.h:142: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] 142 | void quit_callback(); | ^ 10 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c help.c help.c:17:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 17 | void help_callback(w, widget_to_popup, call_data) /* ARGSUSED */ | ^ help.c:25:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 25 | void show_text(w, text, call_data) /* ARGSUSED */ | ^ help.c:36:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 36 | void pop_down(w, widget_to_popdown, call_data) /* ARGSUSED */ | ^ help.c:45:1: warning: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Wimplicit-int] 45 | createHelpWidgets( parent ) | ^ | int help.c:45:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] help.c:120:1: warning: non-void function does not return a value [-Wreturn-type] 120 | } | ^ 6 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c XGas.c XGas.c:94:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 94 | GasAction(w, event, params, num_params) /* ARGSUSED */ | ^ XGas.c:38: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] 38 | static void GasAction(/* Widget, XEvent*, String*, Cardinal* */); | ^ XGas.c:104:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 104 | Resize(w) | ^ XGas.c:39: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] 39 | static void Resize(); | ^ 4 warnings generated. cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c doc.c cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c quick.c cc -O2 -I./lib/Xt -I. -I/usr/local/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c man.c rm -f xgas cc -o xgas -O2 -L/usr/X11R6/lib -L/usr/local/lib main.o dynamics.o chamber.o timestep.o molecule.o util.o help.o XGas.o doc.o quick.o man.o -lXaw -lXmu -lXt -lSM -lICE -lXext -lX11 -lXdmcp -lXau -lXt -lSM -lICE -lXext -lX11 -lXdmcp -lXau -lm -Wl,-rpath,/usr/local/lib ld: warning: timestep.c(timestep.o:(oneTimestep)): warning: sprintf() is often misused, please use snprintf() ld: warning: help.c(help.o:(createHelpWidgets)): warning: strcpy() is almost always misused, please use strlcpy() ld: warning: help.c(help.o:(createHelpWidgets)): warning: strcat() is almost always misused, please use strlcat() ld: warning: util.c(util.o:(frand)): warning: rand() may return deterministic values, is that what you want? rm -f xgas._man if test -z "" ; then cd `dirname xgas` && ln -s `basename xgas.man` `basename xgas._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" < xgas.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/\@\@$/\\/' >xgas._man; fi >>> Running package in misc/xgas at 1764960560.31 ===> misc/xgas ===> Faking installation for xgas-1.0p4 install -c xgas /exopi-obj/pobj/xgas-1.0/fake-amd64/usr/local/bin/xgas + mkdir -p /exopi-obj/pobj/xgas-1.0/fake-amd64/etc/X11/app-defaults install -c -m 0444 XGas.ad /exopi-obj/pobj/xgas-1.0/fake-amd64/usr/local/lib/X11/app-defaults/XGas install in . done install -c -m 0444 xgas._man /exopi-obj/pobj/xgas-1.0/fake-amd64/usr/local/man/man1/xgas.1 install.man in . done ===> Building package for xgas-1.0p4 Create /exopi-cvs/ports/packages/amd64/all/xgas-1.0p4.tgz Creating package xgas-1.0p4 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|*** | 5% checksumming|****** | 9% checksumming|******** | 14% checksumming|*********** | 18% checksumming|************** | 23% checksumming|***************** | 27% checksumming|******************* | 32% checksumming|********************** | 36% checksumming|************************* | 41% checksumming|**************************** | 45% checksumming|******************************* | 50% checksumming|********************************* | 55% checksumming|************************************ | 59% checksumming|*************************************** | 64% checksumming|****************************************** | 68% checksumming|******************************************** | 73% checksumming|*********************************************** | 77% checksumming|************************************************** | 82% checksumming|***************************************************** | 86% checksumming|******************************************************* | 91% checksumming|********************************************************** | 95% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|* | 2% archiving|************************************************************ | 94% archiving|************************************************************** | 96% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/xgas-1.0p4.tgz >>> Running clean in misc/xgas at 1764960561.98 ===> misc/xgas ===> Cleaning for xgas-1.0p4 >>> Ended at 1764960562.47 max_stuck=1.30/depends=3.90/show-prepare-results=3.19/build=8.02/package=1.82/clean=0.55