>>> Building on exopi-6 under mail/movemail DIST = [mail/movemail:movemail-1.0.tar.gz] FULLPKGNAME = movemail-1.0p2 distfiles size=15868 >>> Running build in mail/movemail at 1764696565.28 ===> mail/movemail ===> Building from scratch movemail-1.0p2 ===> Verifying specs: c ===> found c.102.2 ===> Checking files for movemail-1.0p2 `/exopi-cvs/ports/distfiles/movemail-1.0.tar.gz' is up to date. >> (SHA256) all files: OK ===> Extracting for movemail-1.0p2 ===> Patching for movemail-1.0p2 ===> Applying OpenBSD patch patch-freebsd_h Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- freebsd.h.orig Sun Nov 13 04:46:05 2011 |+++ freebsd.h Sun Nov 13 04:46:27 2011 -------------------------- Patching file freebsd.h using Plan A... Hunk #1 succeeded at 96. done ===> Applying OpenBSD patch patch-movemail_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- movemail.c.orig Sun Nov 13 04:37:47 2011 |+++ movemail.c Sun Nov 13 04:38:07 2011 -------------------------- Patching file movemail.c using Plan A... Hunk #1 succeeded at 61. 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 movemail-1.0p2 ===> Configuring for movemail-1.0p2 ===> Building for movemail-1.0p2 cc -O2 -pipe -I/exopi-obj/pobj/movemail-1.0/movemail-1.0 -Demacs -MD -MP -nostdinc -idirafter /usr/include -c movemail.c In file included from movemail.c:58: ./config.h:334: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 declaration [-Wdeprecated-non-prototype] 334 | extern char *getenv (); | ^ /usr/include/stdlib.h:110:7: note: conflicting prototype is here 110 | char *getenv(const char *); | ^ movemail.c: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 previous declaration [-Wdeprecated-non-prototype] 135 | char *strerror (); | ^ movemail.c:187:11: warning: passing arguments to 'fatal' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 187 | fatal ("Destination file name is empty", 0); | ^ movemail.c:191:22: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 191 | pfatal_with_name (outname); | ^ movemail.c:195:34: warning: passing arguments to 'xmalloc' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 195 | char *buf = (char *) xmalloc (strlen (outname) + 1); | ^ movemail.c:204:24: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 204 | pfatal_with_name (buf); | ^ movemail.c:224:22: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 224 | pfatal_with_name (inname); | ^ movemail.c:313:19: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 313 | pfatal_with_name (inname); | ^ movemail.c:324:19: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 324 | pfatal_with_name (outname); | ^ movemail.c:335:57: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 335 | if (flock (indesc, LOCK_EX) < 0) pfatal_with_name (inname); | ^ movemail.c:352:20: warning: passing arguments to 'pfatal_with_name' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 352 | pfatal_with_name (outname); | ^ movemail.c:366:20: warning: passing arguments to 'pfatal_and_delete' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 366 | pfatal_and_delete (outname); | ^ movemail.c:153:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 153 | main (argc, argv) | ^ movemail.c:420:9: warning: passing arguments to 'error' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 420 | error (s1, s2); | ^ movemail.c:415:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 415 | fatal (s1, s2) | ^ movemail.c:137: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] 137 | void fatal (); | ^ movemail.c:427:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 427 | error (s1, s2, s3) | ^ movemail.c:138: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] 138 | void error (); | ^ movemail.c:439:20: warning: passing arguments to 'concat' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 439 | char *s = concat ("", strerror (errno), " for %s"); | ^ movemail.c:436:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 436 | pfatal_with_name (name) | ^ movemail.c:139: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] 139 | void pfatal_with_name (); | ^ movemail.c:447:20: warning: passing arguments to 'concat' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 447 | char *s = concat ("", strerror (errno), " for %s"); | ^ movemail.c:444:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 444 | pfatal_and_delete (name) | ^ movemail.c:140: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] 140 | void pfatal_and_delete (); | ^ movemail.c:459:35: warning: passing arguments to 'xmalloc' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 459 | char *result = (char *) xmalloc (len1 + len2 + len3 + 1); | ^ movemail.c:455:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 455 | concat (s1, s2, s3) | ^ movemail.c:141: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] 141 | char *concat (); | ^ movemail.c:472:1: warning: a function definition without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype] 472 | xmalloc (size) | ^ movemail.c: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 | long *xmalloc (); | ^ 29 warnings generated. cc -o movemail movemail.o ld: warning: movemail.c(movemail.o:(main)): warning: strcpy() is almost always misused, please use strlcpy() >>> Running package in mail/movemail at 1764696567.17 ===> mail/movemail ===> Faking installation for movemail-1.0p2 install -c -s -o root -g bin -m 755 movemail /exopi-obj/pobj/movemail-1.0/fake-amd64/usr/local/bin/movemail install -c -o root -g bin -m 644 movemail.1 /exopi-obj/pobj/movemail-1.0/fake-amd64/usr/local/man/man1/movemail.1 ===> Building package for movemail-1.0p2 Create /exopi-cvs/ports/packages/amd64/all/movemail-1.0p2.tgz Creating package movemail-1.0p2 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|****** | 10% checksumming|************ | 20% checksumming|****************** | 30% checksumming|************************ | 40% checksumming|******************************* | 50% checksumming|************************************* | 60% checksumming|******************************************* | 70% checksumming|************************************************* | 80% checksumming|******************************************************* | 90% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving|** | 3% archiving|***************************************************** | 83% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/movemail-1.0p2.tgz >>> Running clean in mail/movemail at 1764696570.61 ===> mail/movemail ===> Cleaning for movemail-1.0p2 >>> Ended at 1764696571.38 max_stuck=0.00/build=1.85/package=3.37/clean=0.92