>>> Building on exopi-3 under sysutils/rtty DIST = [sysutils/rtty:rtty-4.0.shar.gz] FULLPKGNAME = rtty-4.0p0 distfiles size=24190 >>> Running build in sysutils/rtty at 1713210528.55 ===> sysutils/rtty ===> Building from scratch rtty-4.0p0 ===> Verifying specs: c ===> found c.99.0 ===> Checking files for rtty-4.0p0 `/exopi-cvs/ports/distfiles/rtty-4.0.shar.gz' is up to date. >> (SHA256) rtty-4.0.shar.gz: OK ===> Extracting for rtty-4.0p0 x - README x - Makefile x - connutil.c x - locbrok.c x - misc.c x - rtty.c x - ttyprot.c x - ttysrv.c x - bitypes.h x - locbrok.h x - misc.h x - rtty.h x - ttyprot.h x - Startup.sh x - agelog.sh x - agelogs.sh x - console.sh x - startsrv.sh ===> Patching for rtty-4.0p0 ===> Applying OpenBSD patch patch-Makefile Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- Makefile.orig Wed May 8 12:30:37 2002 |+++ Makefile Wed May 8 12:30:37 2002 -------------------------- Patching file Makefile using Plan A... Hunk #1 succeeded at 23. Hunk #2 succeeded at 35. Hunk #3 succeeded at 61. done ===> Applying OpenBSD patch patch-console_sh Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- console.sh.orig Wed May 8 12:30:37 2002 |+++ console.sh Wed May 8 12:30:37 2002 -------------------------- Patching file console.sh using Plan A... Hunk #1 succeeded at 24. done ===> Applying OpenBSD patch patch-locbrok_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- locbrok.c.orig Wed May 8 12:30:37 2002 |+++ locbrok.c Wed May 8 12:30:37 2002 -------------------------- Patching file locbrok.c using Plan A... Hunk #1 succeeded at 76. done ===> Applying OpenBSD patch patch-rtty_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- rtty.c.orig Wed May 8 12:30:37 2002 |+++ rtty.c Wed May 8 12:30:37 2002 -------------------------- Patching file rtty.c using Plan A... Hunk #1 succeeded at 89. Hunk #2 succeeded at 106. done ===> Applying OpenBSD patch patch-startsrv_sh Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- startsrv.sh.orig Wed May 8 12:30:37 2002 |+++ startsrv.sh Wed May 8 12:30:37 2002 -------------------------- Patching file startsrv.sh using Plan A... Hunk #1 succeeded at 19. done ===> Applying OpenBSD patch patch-ttysrv_c Hmm... Looks like a unified diff to me... The text leading up to this was: -------------------------- |--- ttysrv.c.orig Wed May 8 12:30:37 2002 |+++ ttysrv.c Wed May 8 12:30:37 2002 -------------------------- Patching file ttysrv.c using Plan A... Hunk #1 succeeded at 136. 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 rtty-4.0p0 ===> Configuring for rtty-4.0p0 ===> Building for rtty-4.0p0 cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c ttysrv.c ttysrv.c:472:24: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype] struct hostent *hp, *gethostbyaddr(); ^ /usr/include/netdb.h:273:17: note: conflicting prototype is here struct hostent *gethostbyaddr(const void *, socklen_t, int); ^ 1 warning generated. cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c ttyprot.c cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c connutil.c cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c misc.c misc.c:172:12: warning: using the result of an assignment as a condition without parentheses [-Wparentheses] while (ch = *s++) { ~~~^~~~~~ misc.c:172:12: note: place parentheses around the assignment to silence this warning while (ch = *s++) { ^ ( ) misc.c:172:12: note: use '==' to turn this assignment into an equality comparison while (ch = *s++) { ^ == 1 warning generated. rm -f version.c ( echo "#ifndef LINT"; echo "char Copyright[] ="; echo ' "Copyright 1996,1997,2001 by Internet Software Consortium, Inc.";'; echo "char Version[] ="; echo ' "Version 4.0 ('`whoami`'@'`hostname`' '`date`')";'; echo "#endif"; ) >version.c cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c version.c cc -o ttysrv ttysrv.o ttyprot.o connutil.o misc.o version.o ttysrv.c(ttysrv.o:(main)): warning: strcpy() is almost always misused, please use strlcpy() ttysrv.c(ttysrv.o:(main_loop)): warning: sprintf() is often misused, please use snprintf() cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c rtty.c rtty.c:486:37: warning: a function declaration without a prototype is deprecated in all versions of C and is treated as a zero-parameter prototype in C2x, conflicting with a previous declaration [-Wdeprecated-non-prototype] char passwd[TP_MAXVAR], s[3], *c, *crypt(); ^ /usr/include/unistd.h:405:7: note: conflicting prototype is here char *crypt(const char *, const char *); ^ 1 warning generated. cc -o rtty rtty.o ttyprot.o connutil.o misc.o version.o rtty.c(rtty.o:(main)): warning: sprintf() is often misused, please use snprintf() rtty.c(rtty.o:(main)): warning: strcpy() is almost always misused, please use strlcpy() cc -O2 -pipe -DDEBUG -UWANT_TCPIP -UNEED_BITYPES_H -UNEED_INET_ATON -UNO_SOCKADDR_LEN -UNO_HSTRERROR -c locbrok.c locbrok.c:303:2: 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] exit(1); ^ locbrok.c:303:2: note: include the header or explicitly provide a declaration for 'exit' 1 warning generated. cc -o locbrok locbrok.o misc.o version.o sed -e 's:DESTPATH:/usr/local/rtty:g' Startup chmod +x Startup sed -e 's:DESTPATH:/usr/local/rtty:g' console chmod +x console sed -e 's:DESTPATH:/usr/local/rtty:g' startsrv chmod +x startsrv sed -e 's:DESTPATH:/usr/local/rtty:g' agelogs chmod +x agelogs cat agelog chmod +x agelog >>> Running package in sysutils/rtty at 1713210535.28 ===> sysutils/rtty ===> Faking installation for rtty-4.0p0 set -x; test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty || mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty set +e -x; for x in bin dev sock log pid opt out; do test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/$x || mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/$x; done set -x; for x in ttysrv rtty locbrok; do install -c -m 555 $x /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/$x; done + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/dev + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/dev + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/sock + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/sock + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/log + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/log + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/pid + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/pid + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/opt + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/opt + test -d /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/out + mkdir /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/out + install -c -m 555 ttysrv /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/ttysrv + install -c -m 555 rtty /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/rtty + install -c -m 555 locbrok /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/locbrok set -x; for x in Startup console startsrv agelogs agelog; do install -c -m 555 $x /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/$x; done + install -c -m 555 Startup /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/Startup + install -c -m 555 console /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/console + install -c -m 555 startsrv /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/startsrv + install -c -m 555 agelogs /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/agelogs + install -c -m 555 agelog /exopi-obj/pobj/rtty-4.0/fake-amd64/usr/local/rtty/bin/agelog ===> Building package for rtty-4.0p0 Create /exopi-cvs/ports/packages/amd64/all/rtty-4.0p0.tgz Creating package rtty-4.0p0 reading plist| checking dependencies| checksumming| checksumming| | 0% checksumming|** | 4% checksumming|***** | 8% checksumming|******* | 12% checksumming|********* | 15% checksumming|************ | 19% checksumming|************** | 23% checksumming|**************** | 27% checksumming|******************* | 31% checksumming|********************* | 35% checksumming|*********************** | 38% checksumming|************************** | 42% checksumming|**************************** | 46% checksumming|******************************* | 50% checksumming|********************************* | 54% checksumming|*********************************** | 58% checksumming|************************************** | 62% checksumming|**************************************** | 65% checksumming|****************************************** | 69% checksumming|********************************************* | 73% checksumming|*********************************************** | 77% checksumming|************************************************* | 81% checksumming|**************************************************** | 85% checksumming|****************************************************** | 88% checksumming|******************************************************** | 92% checksumming|*********************************************************** | 96% checksumming|*************************************************************|100% archiving| archiving| | 0% archiving| | 1% archiving|******** | 13% archiving|************************* | 40% archiving|*********************************************** | 73% archiving|******************************************************* | 85% archiving|******************************************************* | 87% archiving|************************************************************ | 94% archiving|************************************************************* | 95% archiving|************************************************************** | 96% archiving|****************************************************************|100% Link to /exopi-cvs/ports/packages/amd64/ftp/rtty-4.0p0.tgz >>> Running clean in sysutils/rtty at 1713210538.94 ===> sysutils/rtty ===> Cleaning for rtty-4.0p0 >>> Ended at 1713210540.49 max_stuck=0.00/build=6.74/package=3.39/clean=1.82