>>> Building on exopi-4 under converters/btoa DIST = [converters/btoa:btoa-5.2-patch1.gz;converters/btoa:btoa-5.2.tar.gz] FULLPKGNAME = btoa-5.2.1p0 distfiles size=10995 >>> Running build in converters/btoa at 1764696561.39 ===> converters/btoa ===> Building from scratch btoa-5.2.1p0 ===> Verifying specs: c ===> found c.102.2 ===> Checking files for btoa-5.2.1p0 `/exopi-cvs/ports/distfiles/btoa-5.2.tar.gz' is up to date. `/exopi-cvs/ports/distfiles/btoa-5.2-patch1.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for btoa-5.2.1p0 ===> Patching for btoa-5.2.1p0 ===> Applying distribution patches for btoa-5.2.1p0 ===> Applying distribution patch btoa-5.2-patch1.gz Hmm... Looks like a new-style context diff to me... The text leading up to this was: -------------------------- |diff -c -P btoa-5.2/Makefile.sun btoa-5.2.1/Makefile.sun |*** btoa-5.2/Makefile.sun Fri Oct 8 12:00:00 1993 |--- btoa-5.2.1/Makefile.sun Sat Apr 6 00:45:25 1996 -------------------------- Patching file Makefile.sun using Plan A... Hunk #1 succeeded at 1. Hunk #2 succeeded at 15. Hmm... The next patch looks like a new-style context diff to me... The text leading up to this was: -------------------------- |diff -c -P btoa-5.2/README.patch1 btoa-5.2.1/README.patch1 |*** btoa-5.2/README.patch1 Thu Jan 1 00:00:00 1970 |--- btoa-5.2.1/README.patch1 Sat Apr 6 00:44:28 1996 -------------------------- (Creating file README.patch1...) Patching file README.patch1 using Plan A... Empty context always matches. Hunk #1 succeeded at 1. Hmm... The next patch looks like a new-style context diff to me... The text leading up to this was: -------------------------- |diff -c -P btoa-5.2/btoa.c btoa-5.2.1/btoa.c |*** btoa-5.2/btoa.c Fri Oct 8 12:00:00 1993 |--- btoa-5.2.1/btoa.c Sat Apr 6 00:44:28 1996 -------------------------- Patching file btoa.c using Plan A... Hunk #1 succeeded at 40. done ===> Applying OpenBSD patch patch-Makefile_sun Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- Makefile.sun.orig Sat Mar 17 15:50:50 2001 |+++ Makefile.sun Sat Mar 17 15:52:11 2001 -------------------------- Patching file Makefile.sun using Plan A... Hunk #1 succeeded at 1. 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 btoa-5.2.1p0 ===> Configuring for btoa-5.2.1p0 ===> Building for btoa-5.2.1p0 cc -c -O2 -pipe btoa.c btoa.c:9:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 9 | #endif AMIGA | ^ | // In file included from btoa.c:11: ./btoa.h:52:7: warning: extra tokens at end of #else directive [-Wextra-tokens] 52 | #else !LATTICE /* For compilers which don't know about prototypes. */ | ^ | // ./btoa.h:69:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 69 | #endif USE_MACROS | ^ | // ./btoa.h:71:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 71 | #endif LATTICE | ^ | // btoa.c:14:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 14 | #endif USE_MACROS | ^ | // btoa.c:23:1: warning: return type of 'main' is not 'int' [-Wmain-return-type] 23 | void main(argc, argv) | ^ btoa.c:23:1: note: change return type to 'int' 23 | void main(argc, argv) | ^~~~ | int btoa.c:37:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 37 | #endif AMIGA | ^ | // btoa.c:44:8: warning: call to undeclared library function 'strncmp' with type 'int (const char *, const char *, unsigned long)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 44 | if (!strncmp(argv[0] + strlen(argv[0]) - 4, "atob", 4)) { | ^ btoa.c:44:8: note: include the header or explicitly provide a declaration for 'strncmp' btoa.c:44:26: 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] 44 | if (!strncmp(argv[0] + strlen(argv[0]) - 4, "atob", 4)) { | ^ btoa.c:44:26: note: include the header or explicitly provide a declaration for 'strlen' btoa.c:89:31: warning: passing arguments to 'fopen_read' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 89 | if ((infile = fopen_read(infilename)) == NULL) | ^ btoa.c:103:33: warning: passing arguments to 'fopen_write' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 103 | if ((outfile = fopen_write(argv[2])) == NULL) | ^ btoa.c:115:28: warning: passing arguments to 'producerepair' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 115 | error = producerepair(infile); | ^ btoa.c:117:28: warning: passing arguments to 'performrepair' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 117 | error = performrepair(infile); | ^ btoa.c:119:19: warning: passing arguments to 'atob' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 119 | error = atob(infile); | ^ btoa.c:121:19: warning: passing arguments to 'btoa' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 121 | error = btoa(infile, infilename); | ^ btoa.c:23:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 23 | void main(argc, argv) | ^ btoa.c:151:47: warning: passing arguments to 'truncname' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 151 | (infilename == NULL) ? "-" : truncname(infilename)); | ^ btoa.c:189:14: warning: passing arguments to 'wordout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 189 | wordout(codeword); | ^ btoa.c:196:11: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 196 | asciiout(EOF); /* Flush buffer. */ | ^ btoa.c:135:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 135 | BYTE btoa(infile, infilename) | ^ In file included from btoa.c:11: ./btoa.h:57:14: 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] 57 | BYTE atob(), btoa(), copyfile(), decode_line(), new_decodefile(), | ^ btoa.c:246:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 246 | #endif !USE_MACROS | ^ | // btoa.c:258:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 258 | asciiout('z'); | ^ btoa.c:261:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 261 | asciiout('y'); | ^ btoa.c:283:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 283 | asciiout(ENCODE(quote + tmp)); | ^ btoa.c:287:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 287 | asciiout(ENCODE(quote)); | ^ btoa.c:291:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 291 | asciiout(ENCODE(quote)); | ^ btoa.c:295:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 295 | asciiout(ENCODE(quote)); | ^ btoa.c:297:13: warning: passing arguments to 'asciiout' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 297 | asciiout(ENCODE((int)codeword)); | ^ btoa.c:250:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 250 | void wordout(codeword) | ^ In file included from btoa.c:11: ./btoa.h:55:39: 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] 55 | printhelp(), producediagnosis(), wordout(); | ^ btoa.c:303:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 303 | void asciiout(ch) | ^ In file included from btoa.c:11: ./btoa.h:54: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] 54 | void asciiout(), exit(), intodiagnosislist(), outdiagnosislist(), | ^ btoa.c:349:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 349 | BYTE *truncname(name) | ^ In file included from btoa.c:11: ./btoa.h:59: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] 59 | *truncname(); | ^ 35 warnings generated. cc -c -O2 -pipe atob.c atob.c:9:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 9 | #endif AMIGA | ^ | // In file included from atob.c:11: ./btoa.h:52:7: warning: extra tokens at end of #else directive [-Wextra-tokens] 52 | #else !LATTICE /* For compilers which don't know about prototypes. */ | ^ | // ./btoa.h:69:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 69 | #endif USE_MACROS | ^ | // ./btoa.h:71:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 71 | #endif LATTICE | ^ | // atob.c:14:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 14 | #endif USE_MACROS | ^ | // atob.c:36:19: warning: passing arguments to 'readbuffer' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 36 | if (readbuffer(buffer, "archive", infile)) | ^ atob.c:39:21: warning: call to undeclared library function 'strncmp' with type 'int (const char *, const char *, unsigned long)'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 39 | while (!(error || strncmp(buffer, "xbtoa", 5) == 0)); | ^ atob.c:39:21: note: include the header or explicitly provide a declaration for 'strncmp' atob.c:42:9: 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] 42 | if (strcmp(buffer, "xbtoa Begin\n") == 0) | ^ atob.c:42:9: note: include the header or explicitly provide a declaration for 'strcmp' atob.c:52:35: warning: passing arguments to 'fopen_write' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 52 | if ((outfile = fopen_write(outfilename)) == NULL) | ^ atob.c:54:9: warning: add explicit braces to avoid dangling else [-Wdangling-else] 54 | else | ^ atob.c:47:5: warning: add explicit braces to avoid dangling else [-Wdangling-else] 47 | else if (sscanf(buffer, "xbtoa5 %d %s Begin\n", &maxperline, outfilename) == 2) | ^ atob.c:68:29: warning: passing arguments to 'new_decodefile' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 68 | error = new_decodefile(infile, &lastline, filepos, maxperline); | ^ atob.c:70:29: warning: passing arguments to 'old_decodefile' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 70 | error = old_decodefile(infile, &lastline); | ^ atob.c:89:18: warning: passing arguments to 'decode_line' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 89 | decode_line(NULL, (int) ((n1 - 1) & 0x03)); | ^ atob.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 | BYTE atob(infile) | ^ In file included from atob.c:11: ./btoa.h:57: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] 57 | BYTE atob(), btoa(), copyfile(), decode_line(), new_decodefile(), | ^ atob.c:97:5: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 97 | int nextbyte(infile) | ^ In file included from atob.c:11: ./btoa.h:61: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] 61 | int nextbyte(); | ^ atob.c:146:19: warning: passing arguments to 'readbuffer' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 146 | if (readbuffer(buffer, "archive", infile)) | ^ atob.c:150:24: 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] 150 | else if ((length = strlen(buffer) - 1) != maxperline || | ^ atob.c:150:24: note: include the header or explicitly provide a declaration for 'strlen' atob.c:175:22: warning: passing arguments to 'decode_line' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 175 | if (decode_line(buffer, length - 1)) | ^ atob.c:187:28: warning: passing arguments to 'intodiagnosislist' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 187 | intodiagnosislist(&diagnosislist, startpos, filepos); | ^ atob.c:219:24: warning: passing arguments to 'intodiagnosislist' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 219 | intodiagnosislist(&diagnosislist, startpos, filepos); | ^ atob.c:220:21: warning: passing arguments to 'producediagnosis' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 220 | producediagnosis(&diagnosislist, infile); | ^ atob.c:111:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 111 | BYTE new_decodefile(infile, lastline, filepos, maxperline) | ^ In file included from atob.c:11: ./btoa.h:57:49: 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] 57 | BYTE atob(), btoa(), copyfile(), decode_line(), new_decodefile(), | ^ atob.c:247:19: warning: passing arguments to 'readbuffer' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 247 | if (readbuffer(buffer, "archive", infile)) | ^ atob.c:260:22: warning: passing arguments to 'decode_line' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 260 | if (decode_line(buffer, length)) | ^ atob.c:230:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 230 | BYTE old_decodefile(infile, lastline) | ^ In file included from atob.c:11: ./btoa.h:58: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] 58 | old_decodefile(), performrepair(), producerepair(), readbuffer(), | ^ atob.c:274:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 274 | BYTE decode_line(buffer, length) | ^ In file included from atob.c:11: ./btoa.h:57:34: 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] 57 | BYTE atob(), btoa(), copyfile(), decode_line(), new_decodefile(), | ^ 32 warnings generated. cc -c -O2 -pipe repair.c repair.c:9:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 9 | #endif AMIGA | ^ | // In file included from repair.c:11: ./btoa.h:52:7: warning: extra tokens at end of #else directive [-Wextra-tokens] 52 | #else !LATTICE /* For compilers which don't know about prototypes. */ | ^ | // ./btoa.h:69:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 69 | #endif USE_MACROS | ^ | // ./btoa.h:71:8: warning: extra tokens at end of #endif directive [-Wextra-tokens] 71 | #endif LATTICE | ^ | // repair.c:37:35: warning: passing arguments to 'fopen_write' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 37 | if ((diagnosisfile = fopen_write(diagnosisname)) != NULL) | ^ repair.c:45:23: warning: passing arguments to 'outdiagnosislist' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 45 | outdiagnosislist(diagnosislist, &startpos, &endpos); | ^ repair.c:26:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 26 | void producediagnosis(diagnosislist, infile) | ^ In file included from repair.c:11: ./btoa.h:55:19: 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] 55 | printhelp(), producediagnosis(), wordout(); | ^ repair.c:78:39: warning: call to undeclared function 'malloc'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 78 | diagnosisitem = (struct Diagnosis *)malloc(sizeof(struct Diagnosis)); | ^ repair.c:78:19: warning: cast to 'struct Diagnosis *' from smaller integer type 'int' [-Wint-to-pointer-cast] 78 | diagnosisitem = (struct Diagnosis *)malloc(sizeof(struct Diagnosis)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ repair.c:90:7: warning: call to undeclared function 'free'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 90 | free((BYTE *) diagnosisitem); | ^ repair.c:72:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 72 | void intodiagnosislist(diagnosislist, startpos, endpos) | ^ In file included from repair.c:11: ./btoa.h:54:26: 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] 54 | void asciiout(), exit(), intodiagnosislist(), outdiagnosislist(), | ^ repair.c:116:5: warning: call to undeclared function 'free'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 116 | free((BYTE *)diagnosisitem); | ^ repair.c:102:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 102 | void outdiagnosislist(diagnosislist, startpos, endpos) | ^ In file included from repair.c:11: ./btoa.h:54:47: 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] 54 | void asciiout(), exit(), intodiagnosislist(), outdiagnosislist(), | ^ repair.c:134:19: warning: passing arguments to 'readbuffer' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 134 | if (readbuffer(copybuffer, "archive", infile)) | ^ repair.c:140:11: 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] 140 | if (strcmp(copybuffer, searchstring) == 0) | ^ repair.c:140:11: note: include the header or explicitly provide a declaration for 'strcmp' repair.c:125:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 125 | BYTE copyfile(infile, outfile, searchstring) | ^ In file included from repair.c:11: ./btoa.h:57:22: 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] 57 | BYTE atob(), btoa(), copyfile(), decode_line(), new_decodefile(), | ^ repair.c:150:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 150 | BYTE readbuffer(buffer, errormsg, infile) | ^ In file included from repair.c:11: ./btoa.h:58:58: 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] 58 | old_decodefile(), performrepair(), producerepair(), readbuffer(), | ^ repair.c:167:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 167 | FILE *fopen_read(filename) | ^ In file included from repair.c:11: ./btoa.h:63: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] 63 | FILE *fopen_read(), *fopen_write(); | ^ repair.c:179:7: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 179 | FILE *fopen_write(filename) | ^ In file included from repair.c:11: ./btoa.h:63:22: 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] 63 | FILE *fopen_read(), *fopen_write(); | ^ repair.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 | BYTE producerepair(infile) | ^ In file included from repair.c:11: ./btoa.h:58: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] 58 | old_decodefile(), performrepair(), producerepair(), readbuffer(), | ^ repair.c:318:9: warning: add explicit braces to avoid dangling else [-Wdangling-else] 318 | else | ^ repair.c:270:6: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 270 | BYTE performrepair(infile) | ^ In file included from repair.c:11: ./btoa.h:58:24: 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] 58 | old_decodefile(), performrepair(), producerepair(), readbuffer(), | ^ 31 warnings generated. cc -O btoa.o atob.o repair.o -o btoa >>> Running package in converters/btoa at 1764696564.02 ===> converters/btoa ===> Faking installation for btoa-5.2.1p0 /exopi-obj/pobj/btoa-5.2.1/bin/install -c -s -m 755 btoa /exopi-obj/pobj/btoa-5.2.1/fake-amd64/usr/local/bin/ ln /exopi-obj/pobj/btoa-5.2.1/fake-amd64/usr/local/bin/btoa /exopi-obj/pobj/btoa-5.2.1/fake-amd64/usr/local/bin/atob /exopi-obj/pobj/btoa-5.2.1/bin/install -c -m 644 btoa.1 /exopi-obj/pobj/btoa-5.2.1/fake-amd64/usr/local/man/man1/ ===> Building package for btoa-5.2.1p0 Create /exopi-cvs/ports/packages/amd64/all/btoa-5.2.1p0.tgz Creating package btoa-5.2.1p0 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|****** | 9% checksumming|*********** | 18% checksumming|***************** | 27% checksumming|********************** | 36% checksumming|**************************** | 45% checksumming|********************************* | 55% checksumming|*************************************** | 64% checksumming|******************************************** | 73% checksumming|************************************************** | 82% checksumming|******************************************************* | 91% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|** | 3% archiving|****************************************************** | 84% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/btoa-5.2.1p0.tgz >>> Running clean in converters/btoa at 1764696566.51 ===> converters/btoa ===> Cleaning for btoa-5.2.1p0 >>> Ended at 1764696567.05 max_stuck=0.00/build=2.52/package=2.60/clean=0.57