+ case "${usergroup_phase}" in
+ local run_cmd
+ run_cmd=run_su
+ shift
+ run_su /opt/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/xdo-0.5.7/work.log
+ su pbulk -c '"$@"' make /opt/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/xdo-0.5.7/work.log
=> Bootstrap dependency digest>=20211023: found digest-20220214
===> Building for xdo-0.5.7
gcc -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -D_FORTIFY_SOURCE=2 -I/opt/pkg/include -std=c99 -pedantic -Wall -Wextra -I/opt/pkg/include -D_POSIX_C_SOURCE=200809L -DVERSION=\"0.5.7\"  -c -o xdo.o xdo.c
gcc -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -D_FORTIFY_SOURCE=2 -I/opt/pkg/include -std=c99 -pedantic -Wall -Wextra -I/opt/pkg/include -D_POSIX_C_SOURCE=200809L -DVERSION=\"0.5.7\"  -c -o helpers.o helpers.c
In file included from xdo.c:14:
xdo.h:37:1: error: unknown type name 'xcb_ewmh_connection_t'; did you mean 'xcb_connection_t'?
   37 | xcb_ewmh_connection_t *ewmh;
      | ^~~~~~~~~~~~~~~~~~~~~
      | xcb_connection_t
xdo.c: In function 'setup':
xdo.c:290:23: error: 'xcb_ewmh_connection_t' undeclared (first use in this function); did you mean 'xcb_connection_t'?
  290 |  ewmh = malloc(sizeof(xcb_ewmh_connection_t));
      |                       ^~~~~~~~~~~~~~~~~~~~~
      |                       xcb_connection_t
xdo.c:290:23: note: each undeclared identifier is reported only once for each function it appears in
xdo.c:291:6: warning: implicit declaration of function 'xcb_ewmh_init_atoms_replies' [-Wimplicit-function-declaration]
  291 |  if (xcb_ewmh_init_atoms_replies(ewmh, xcb_ewmh_init_atoms(dpy, ewmh), NULL) == 0) {
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:291:40: warning: implicit declaration of function 'xcb_ewmh_init_atoms' [-Wimplicit-function-declaration]
  291 |  if (xcb_ewmh_init_atoms_replies(ewmh, xcb_ewmh_init_atoms(dpy, ewmh), NULL) == 0) {
      |                                        ^~~~~~~~~~~~~~~~~~~
xdo.c: In function 'finish':
xdo.c:299:2: warning: implicit declaration of function 'xcb_ewmh_connection_wipe' [-Wimplicit-function-declaration]
  299 |  xcb_ewmh_connection_wipe(ewmh);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~
xdo.c: In function 'get_active_window':
xdo.c:313:6: warning: implicit declaration of function 'xcb_ewmh_get_active_window_reply' [-Wimplicit-function-declaration]
  313 |  if (xcb_ewmh_get_active_window_reply(ewmh, xcb_ewmh_get_active_window(ewmh, default_screen), win, NULL) != 1) {
      |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:313:45: warning: implicit declaration of function 'xcb_ewmh_get_active_window'; did you mean 'get_active_window'? [-Wimplicit-function-declaration]
  313 |  if (xcb_ewmh_get_active_window_reply(ewmh, xcb_ewmh_get_active_window(ewmh, default_screen), win, NULL) != 1) {
      |                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                             get_active_window
xdo.c: In function 'get_pid':
xdo.c:353:10: warning: implicit declaration of function 'xcb_ewmh_get_wm_pid_reply'; did you mean 'xcb_icccm_get_wm_hints_reply'? [-Wimplicit-function-declaration]
  353 |  return (xcb_ewmh_get_wm_pid_reply(ewmh, xcb_ewmh_get_wm_pid(ewmh, win), pid, NULL) == 1);
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~
      |          xcb_icccm_get_wm_hints_reply
xdo.c:353:42: warning: implicit declaration of function 'xcb_ewmh_get_wm_pid' [-Wimplicit-function-declaration]
  353 |  return (xcb_ewmh_get_wm_pid_reply(ewmh, xcb_ewmh_get_wm_pid(ewmh, win), pid, NULL) == 1);
      |                                          ^~~~~~~~~~~~~~~~~~~
xdo.c: In function 'get_desktop':
xdo.c:358:10: warning: implicit declaration of function 'xcb_ewmh_get_wm_desktop_reply' [-Wimplicit-function-declaration]
  358 |  return (xcb_ewmh_get_wm_desktop_reply(ewmh, xcb_ewmh_get_wm_desktop(ewmh, win), desktop, NULL) == 1 && (*desktop != ALL_DESKS || cfg.symb_desks));
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:358:46: warning: implicit declaration of function 'xcb_ewmh_get_wm_desktop' [-Wimplicit-function-declaration]
  358 |  return (xcb_ewmh_get_wm_desktop_reply(ewmh, xcb_ewmh_get_wm_desktop(ewmh, win), desktop, NULL) == 1 && (*desktop != ALL_DESKS || cfg.symb_desks));
      |                                              ^~~~~~~~~~~~~~~~~~~~~~~
xdo.c: In function 'get_current_desktop':
xdo.c:363:10: warning: implicit declaration of function 'xcb_ewmh_get_current_desktop_reply' [-Wimplicit-function-declaration]
  363 |  return (xcb_ewmh_get_current_desktop_reply(ewmh, xcb_ewmh_get_current_desktop(ewmh, default_screen), desktop, NULL) == 1);
      |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:363:51: warning: implicit declaration of function 'xcb_ewmh_get_current_desktop'; did you mean 'get_current_desktop'? [-Wimplicit-function-declaration]
  363 |  return (xcb_ewmh_get_current_desktop_reply(ewmh, xcb_ewmh_get_current_desktop(ewmh, default_screen), desktop, NULL) == 1);
      |                                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                                   get_current_desktop
xdo.c: In function 'window_close':
xdo.c:368:2: warning: implicit declaration of function 'xcb_ewmh_request_close_window' [-Wimplicit-function-declaration]
  368 |  xcb_ewmh_request_close_window(ewmh, default_screen, win, XCB_CURRENT_TIME, XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:368:77: error: 'XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER' undeclared (first use in this function)
  368 |  xcb_ewmh_request_close_window(ewmh, default_screen, win, XCB_CURRENT_TIME, XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER);
      |                                                                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c: In function 'window_activate':
xdo.c:457:2: warning: implicit declaration of function 'xcb_ewmh_request_change_active_window' [-Wimplicit-function-declaration]
  457 |  xcb_ewmh_request_change_active_window(ewmh, default_screen, win, XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER, XCB_CURRENT_TIME, XCB_NONE);
      |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xdo.c:457:67: error: 'XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER' undeclared (first use in this function)
  457 |  xcb_ewmh_request_change_active_window(ewmh, default_screen, win, XCB_EWMH_CLIENT_SOURCE_TYPE_OTHER, XCB_CURRENT_TIME, XCB_NONE);
      |                                                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gmake: *** [<builtin>: xdo.o] Error 1
*** Error code 2

Stop.
bmake[1]: stopped in /data/jenkins/workspace/pkgsrc-upstream-bulktest/x11/xdo
*** Error code 1

Stop.
bmake: stopped in /data/jenkins/workspace/pkgsrc-upstream-bulktest/x11/xdo