+ case "${usergroup_phase}" in
+ local run_cmd
+ run_cmd=run_su
+ shift
+ run_su /usr/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/ntp-4.2.8p15nb4/work.log
+ su pbulk -c '"$@"' make /usr/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/ntp-4.2.8p15nb4/work.log
=> Bootstrap dependency digest>=20211023: found digest-20220214
WARNING: [license.mk] Every package should define a LICENSE.
===> Building for ntp-4.2.8p15nb4
--- .gcc-warning ---
--- FRC.html ---
--- .gcc-warning ---
Compiling with GCC now generates lots of new warnings.
 
Don't be concerned. They're just warnings.
 
Don't send bug reports about the warnings, either.
 
Feel free to send patches that fix these warnings, though.
 
--- html/.datecheck ---
cd ./html &&  ../scripts/build/checkHtmlFileDates
--- ./.checkChangeLog ---
cd . &&  ./scripts/build/checkChangeLog
--- all ---
/usr/pkg/bin/bmake  all-recursive
--- all-recursive ---
Making all in scripts
--- all-recursive ---
Making all in build
Making all in calc_tickadj
--- all ---
/usr/pkg/bin/bmake  all-am
--- calc_tickadj.8 ---
../../config.status --file=calc_tickadj.8+:./calc_tickadj.man.in
config.status: creating calc_tickadj.8+
mv calc_tickadj.8+ calc_tickadj.8
Making all in ntp-wait
--- ntp-wait.8 ---
../../config.status --file=ntp-wait.8+:./ntp-wait.man.in
config.status: creating ntp-wait.8+
mv ntp-wait.8+ ntp-wait.8
Making all in ntpsweep
--- ntpsweep.1 ---
../../config.status --file=ntpsweep.1+:./ntpsweep.man.in
config.status: creating ntpsweep.1+
mv ntpsweep.1+ ntpsweep.1
Making all in ntptrace
--- ntptrace.8 ---
../../config.status --file=ntptrace.8+:./ntptrace.man.in
config.status: creating ntptrace.8+
mv ntptrace.8+ ntptrace.8
Making all in lib
Making all in update-leap
--- update-leap. ---
../../config.status --file=update-leap.+:./update-leap.man.in
config.status: creating update-leap.+
mv update-leap.+ update-leap.
Making all in include
--- all-recursive ---
Making all in isc
Making all in libntp
--- .deps-ver ---
--- .deps/deps-ver ---
cp ../deps-ver .deps/deps-ver
--- all ---
/usr/pkg/bin/bmake  all-am
--- systime.o ---
--- a_md5encrypt.o ---
  CC       a_md5encrypt.o
--- systime.o ---
  CC       systime.o
--- a_md5encrypt.o ---
a_md5encrypt.c: In function 'cmac_ctx_size':
a_md5encrypt.c:34:17: warning: 'CMAC_CTX_get0_cipher_ctx' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   34 |                 if (NULL != (cctx = CMAC_CTX_get0_cipher_ctx (ctx)))
      |                 ^~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:35:39: note: declared here
   35 | OSSL_DEPRECATEDIN_3_0 EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx);
      |                                       ^~~~~~~~~~~~~~~~~~~~~~~~
a_md5encrypt.c: In function 'make_mac':
a_md5encrypt.c:74:17: warning: 'CMAC_CTX_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   74 |                 if (NULL == (ctx = CMAC_CTX_new())) {
      |                 ^~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:32:33: note: declared here
   32 | OSSL_DEPRECATEDIN_3_0 CMAC_CTX *CMAC_CTX_new(void);
      |                                 ^~~~~~~~~~~~
a_md5encrypt.c:78:17: warning: 'CMAC_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   78 |                 if (!CMAC_Init(ctx, keyptr, AES_128_KEY_SIZE, EVP_aes_128_cbc(), NULL)) {
      |                 ^~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:37:27: note: declared here
   37 | OSSL_DEPRECATEDIN_3_0 int CMAC_Init(CMAC_CTX *ctx,
      |                           ^~~~~~~~~
a_md5encrypt.c:86:17: warning: 'CMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   86 |                 if (!CMAC_Update(ctx, msg->buf, msg->len)) {
      |                 ^~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:40:27: note: declared here
   40 | OSSL_DEPRECATEDIN_3_0 int CMAC_Update(CMAC_CTX *ctx,
      |                           ^~~~~~~~~~~
a_md5encrypt.c:90:17: warning: 'CMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   90 |                 if (!CMAC_Final(ctx, digest->buf, &retlen)) {
      |                 ^~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:42:27: note: declared here
   42 | OSSL_DEPRECATEDIN_3_0 int CMAC_Final(CMAC_CTX *ctx,
      |                           ^~~~~~~~~~
a_md5encrypt.c:96:25: warning: 'CMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
   96 |                         CMAC_CTX_free(ctx);
      |                         ^~~~~~~~~~~~~
In file included from ../include/ntp_md5.h:13,
                 from a_md5encrypt.c:12:
/home/pbulk/build/net/ntp4/work/.buildlink/include/openssl/cmac.h:34:28: note: declared here
   34 | OSSL_DEPRECATEDIN_3_0 void CMAC_CTX_free(CMAC_CTX *ctx);
      |                            ^~~~~~~~~~~~~
--- adjtime.o ---
  CC       adjtime.o
--- atoint.o ---
--- atolfp.o ---
--- atoint.o ---
  CC       atoint.o
--- atolfp.o ---
  CC       atolfp.o
--- atouint.o ---
  CC       atouint.o
--- audio.o ---
  CC       audio.o
--- authkeys.o ---
  CC       authkeys.o
--- authreadkeys.o ---
  CC       authreadkeys.o
--- authusekey.o ---
  CC       authusekey.o
--- bsd_strerror.o ---
  CC       bsd_strerror.o
--- buftvtots.o ---
  CC       buftvtots.o
--- caljulian.o ---
  CC       caljulian.o
--- caltontp.o ---
  CC       caltontp.o
--- calyearstart.o ---
  CC       calyearstart.o
--- clocktime.o ---
  CC       clocktime.o
--- clocktypes.o ---
  CC       clocktypes.o
--- decodenetnum.o ---
  CC       decodenetnum.o
--- dofptoa.o ---
  CC       dofptoa.o
--- dolfptoa.o ---
  CC       dolfptoa.o
--- emalloc.o ---
  CC       emalloc.o
--- findconfig.o ---
  CC       findconfig.o
--- getopt.o ---
  CC       getopt.o
--- hextoint.o ---
  CC       hextoint.o
--- hextolfp.o ---
  CC       hextolfp.o
--- humandate.o ---
  CC       humandate.o
--- icom.o ---
  CC       icom.o
--- iosignal.o ---
  CC       iosignal.o
--- is_ip_address.o ---
  CC       is_ip_address.o
--- lib_strbuf.o ---
  CC       lib_strbuf.o
--- libssl_compat.o ---
  CC       libssl_compat.o
--- machines.o ---
  CC       machines.o
--- mktime.o ---
  CC       mktime.o
--- modetoa.o ---
  CC       modetoa.o
--- mstolfp.o ---
  CC       mstolfp.o
--- msyslog.o ---
  CC       msyslog.o
--- netof.o ---
  CC       netof.o
--- ntp_calendar.o ---
  CC       ntp_calendar.o
--- ntp_calgps.o ---
  CC       ntp_calgps.o
--- ntp_crypto_rnd.o ---
  CC       ntp_crypto_rnd.o
--- ntp_intres.o ---
  CC       ntp_intres.o
--- ntp_libopts.o ---
  CC       ntp_libopts.o
--- ntp_lineedit.o ---
  CC       ntp_lineedit.o
--- ntp_random.o ---
  CC       ntp_random.o
--- ntp_rfc2553.o ---
  CC       ntp_rfc2553.o
--- ntp_worker.o ---
  CC       ntp_worker.o
--- numtoa.o ---
  CC       numtoa.o
--- numtohost.o ---
  CC       numtohost.o
--- octtoint.o ---
  CC       octtoint.o
--- prettydate.o ---
  CC       prettydate.o
--- refidsmear.o ---
  CC       refidsmear.o
--- recvbuff.o ---
  CC       recvbuff.o
--- refnumtoa.o ---
  CC       refnumtoa.o
--- snprintf.o ---
  CC       snprintf.o
--- socket.o ---
  CC       socket.o
--- socktoa.o ---
  CC       socktoa.o
--- socktohost.o ---
  CC       socktohost.o
--- ssl_init.o ---
  CC       ssl_init.o
--- statestr.o ---
  CC       statestr.o
--- strdup.o ---
  CC       strdup.o
--- strl_obsd.o ---
  CC       strl_obsd.o
--- syssignal.o ---
  CC       syssignal.o
--- timespecops.o ---
  CC       timespecops.o
--- timetoa.o ---
  CC       timetoa.o
timetoa.c: In function 'format_time_fraction':
timetoa.c:102:37: warning: '%0*ld' directive output may be truncated writing between 1 and 2147483647 bytes into a region of size between 106 and 126 [-Wformat-truncation=]
  102 |         snprintf(cp, LIB_BUFLENGTH, "%s%" UTIME_FORMAT ".%0*ld",
      |                                     ^~~~~
timetoa.c:102:58: note: format string is defined here
  102 |         snprintf(cp, LIB_BUFLENGTH, "%s%" UTIME_FORMAT ".%0*ld",
      |                                                          ^~~~~
timetoa.c:102:37: note: directive argument in the range [-9223372036854775798, 9223372036854775807]
  102 |         snprintf(cp, LIB_BUFLENGTH, "%s%" UTIME_FORMAT ".%0*ld",
      |                                     ^~~~~
In file included from /usr/include/stdio.h:900,
                 from ../config.h:1749,
                 from timetoa.c:21:
/usr/include/bits/stdio2.h:54:10: note: '__builtin___snprintf_chk' output between 4 and 2147483670 bytes into a destination of size 128
   54 |   return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   55 |                                    __glibc_objsize (__s), __fmt,
      |                                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   56 |                                    __va_arg_pack ());
      |                                    ~~~~~~~~~~~~~~~~~
--- timevalops.o ---
  CC       timevalops.o
--- timexsup.o ---
  CC       timexsup.o
--- uglydate.o ---
  CC       uglydate.o
--- vint64ops.o ---
--- work_fork.o ---
--- vint64ops.o ---
  CC       vint64ops.o
--- work_fork.o ---
  CC       work_fork.o
--- work_thread.o ---
  CC       work_thread.o
--- xsbprintf.o ---
  CC       xsbprintf.o
--- work_thread.o ---
In file included from /usr/include/pthread.h:33,
                 from work_thread.c:13:
work_thread.c:45:57: error: missing binary operator before token "("
   45 | #if defined(PTHREAD_STACK_MIN) && THREAD_MINSTACKSIZE < PTHREAD_STACK_MIN
      |                                                         ^~~~~~~~~~~~~~~~~
*** [work_thread.o] Error code 1

bmake[3]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15/libntp
1 error

bmake[3]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15/libntp
*** [all] Error code 2

bmake[2]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15/libntp
1 error

bmake[2]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15/libntp
*** [all-recursive] Error code 1

bmake[1]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15
1 error

bmake[1]: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15
*** [all] Error code 2

bmake: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15
1 error

bmake: stopped in /home/pbulk/build/net/ntp4/work/ntp-4.2.8p15
*** Error code 2

Stop.
bmake[1]: stopped in /data/jenkins/workspace/pkgsrc-el9-trunk-x86_64/net/ntp4
*** Error code 1

Stop.
bmake: stopped in /data/jenkins/workspace/pkgsrc-el9-trunk-x86_64/net/ntp4