=> "/opt/pkg/bin/bmake" ["-C", "/data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/seatd", "all", "BATCH=1", "DEPENDS_TARGET=/nonexistent"] ===> Building for seatd-0.9.3 ninja: Entering directory `output' [1/45] Compiling C object libseat-private.a.p/common_linked_list.c.o cc1: warning: '-fhardened' not supported for this target [2/45] Compiling C object libseat-private.a.p/common_log.c.o cc1: warning: '-fhardened' not supported for this target [3/45] Compiling C object libseat-private.a.p/common_connection.c.o cc1: warning: '-fhardened' not supported for this target [4/45] Compiling C object libseat-private.a.p/common_terminal.c.o FAILED: [code=1] libseat-private.a.p/common_terminal.c.o gcc -Ilibseat-private.a.p -I. -I.. -I../include -fdiagnostics-color=always -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Wpedantic -Werror -std=c11 -D_XOPEN_SOURCE=700 -D__BSD_VISIBLE -D_NETBSD_SOURCE '-DSEATD_VERSION="0.9.3"' '-DSEATD_DEFAULTPATH="/var/run/seatd.sock"' '-DSEATD_INSTALLPATH="/opt/pkg/bin/seatd"' -Wundef -Wunused -Wlogical-op -Wmissing-include-dirs -Wold-style-definition -Wpointer-arith -Wstrict-aliasing -Wstrict-prototypes -Wimplicit-fallthrough -Wmissing-prototypes -Wvla -Wno-hardened -fhardened '-DREL_SRC_DIR="../"' -pipe -O2 -msave-args -fno-aggressive-loop-optimizations -fPIC -DLIBSEAT=1 -DSEATD_ENABLED=1 -DBUILTIN_ENABLED=1 -MD -MQ libseat-private.a.p/common_terminal.c.o -MF libseat-private.a.p/common_terminal.c.o.d -o libseat-private.a.p/common_terminal.c.o -c ../common/terminal.c cc1: warning: '-fhardened' not supported for this target ../common/terminal.c:31:2: error: #error Unsupported platform 31 | #error Unsupported platform | ^~~~~ ../common/terminal.c:152:2: error: #error Unsupported platform 152 | #error Unsupported platform | ^~~~~ ../common/terminal.c: In function 'terminal_open': ../common/terminal.c:157:13: error: implicit declaration of function 'get_tty_path' [-Wimplicit-function-declaration] 157 | if (get_tty_path(vt, path) == -1) { | ^~~~~~~~~~~~ ../common/terminal.c: In function 'terminal_current_vt': ../common/terminal.c:192:2: error: #error Unsupported platform 192 | #error Unsupported platform | ^~~~~ ../common/terminal.c:169:29: warning: unused parameter 'fd' [-Wunused-parameter] 169 | int terminal_current_vt(int fd) { | ~~~~^~ ../common/terminal.c: In function 'terminal_set_process_switching': ../common/terminal.c:198:16: error: variable 'mode' has initializer but incomplete type 198 | struct vt_mode mode = { | ^~~~~~~ ../common/terminal.c:199:18: error: 'struct vt_mode' has no member named 'mode' 199 | .mode = enable ? VT_PROCESS : VT_AUTO, | ^~~~ ../common/terminal.c:199:34: error: 'VT_PROCESS' undeclared (first use in this function) 199 | .mode = enable ? VT_PROCESS : VT_AUTO, | ^~~~~~~~~~ ../common/terminal.c:199:34: note: each undeclared identifier is reported only once for each function it appears in ../common/terminal.c:199:47: error: 'VT_AUTO' undeclared (first use in this function) 199 | .mode = enable ? VT_PROCESS : VT_AUTO, | ^~~~~~~ ../common/terminal.c:199:25: warning: excess elements in struct initializer 199 | .mode = enable ? VT_PROCESS : VT_AUTO, | ^~~~~~ ../common/terminal.c:199:25: note: (near initialization for 'mode') ../common/terminal.c:200:18: error: 'struct vt_mode' has no member named 'waitv' 200 | .waitv = 0, | ^~~~~ ../common/terminal.c:200:26: warning: excess elements in struct initializer 200 | .waitv = 0, | ^ ../common/terminal.c:200:26: note: (near initialization for 'mode') ../common/terminal.c:201:18: error: 'struct vt_mode' has no member named 'relsig' 201 | .relsig = enable ? SIGUSR1 : 0, | ^~~~~~ ../common/terminal.c:201:27: warning: excess elements in struct initializer 201 | .relsig = enable ? SIGUSR1 : 0, | ^~~~~~ ../common/terminal.c:201:27: note: (near initialization for 'mode') ../common/terminal.c:202:18: error: 'struct vt_mode' has no member named 'acqsig' 202 | .acqsig = enable ? SIGUSR2 : 0, | ^~~~~~ ../common/terminal.c:202:27: warning: excess elements in struct initializer 202 | .acqsig = enable ? SIGUSR2 : 0, | ^~~~~~ ../common/terminal.c:202:27: note: (near initialization for 'mode') ../common/terminal.c:203:18: error: 'struct vt_mode' has no member named 'frsig' 203 | .frsig = FRSIG, | ^~~~~ ../common/terminal.c:203:26: error: 'FRSIG' undeclared (first use in this function) 203 | .frsig = FRSIG, | ^~~~~ ../common/terminal.c:203:26: warning: excess elements in struct initializer ../common/terminal.c:203:26: note: (near initialization for 'mode') ../common/terminal.c:198:24: error: storage size of 'mode' isn't known 198 | struct vt_mode mode = { | ^~~~ ../common/terminal.c:205:24: error: storage size of 'current_mode' isn't known 205 | struct vt_mode current_mode; | ^~~~~~~~~~~~ ../common/terminal.c:206:23: error: 'VT_GETMODE' undeclared (first use in this function) 206 | if (ioctl(fd, VT_GETMODE, ¤t_mode) == -1) { | ^~~~~~~~~~ ../common/terminal.c:218:23: error: 'VT_SETMODE' undeclared (first use in this function) 218 | if (ioctl(fd, VT_SETMODE, &mode) == -1) { | ^~~~~~~~~~ ../common/terminal.c:205:24: warning: unused variable 'current_mode' [-Wunused-variable] 205 | struct vt_mode current_mode; | ^~~~~~~~~~~~ ../common/terminal.c:198:24: warning: unused variable 'mode' [-Wunused-variable] 198 | struct vt_mode mode = { | ^~~~ ../common/terminal.c: In function 'terminal_switch_vt': ../common/terminal.c:228:23: error: 'VT_ACTIVATE' undeclared (first use in this function) 228 | if (ioctl(fd, VT_ACTIVATE, vt) == -1) { | ^~~~~~~~~~~ ../common/terminal.c: In function 'terminal_ack_release': ../common/terminal.c:238:23: error: 'VT_RELDISP' undeclared (first use in this function) 238 | if (ioctl(fd, VT_RELDISP, 1) == -1) { | ^~~~~~~~~~ ../common/terminal.c: In function 'terminal_ack_acquire': ../common/terminal.c:248:23: error: 'VT_RELDISP' undeclared (first use in this function) 248 | if (ioctl(fd, VT_RELDISP, VT_ACKACQ) == -1) { | ^~~~~~~~~~ ../common/terminal.c:248:35: error: 'VT_ACKACQ' undeclared (first use in this function) 248 | if (ioctl(fd, VT_RELDISP, VT_ACKACQ) == -1) { | ^~~~~~~~~ ../common/terminal.c: In function 'terminal_set_keyboard': ../common/terminal.c:259:23: error: 'KDSKBMODE' undeclared (first use in this function) 259 | if (ioctl(fd, KDSKBMODE, enable ? K_ENABLE : K_DISABLE) == -1) { | ^~~~~~~~~ ../common/terminal.c:259:43: error: 'K_ENABLE' undeclared (first use in this function) 259 | if (ioctl(fd, KDSKBMODE, enable ? K_ENABLE : K_DISABLE) == -1) { | ^~~~~~~~ ../common/terminal.c:259:54: error: 'K_DISABLE' undeclared (first use in this function); did you mean 'SS_DISABLE'? 259 | if (ioctl(fd, KDSKBMODE, enable ? K_ENABLE : K_DISABLE) == -1) { | ^~~~~~~~~ | SS_DISABLE ../common/terminal.c: In function 'terminal_set_graphics': ../common/terminal.c:295:23: error: 'KDSETMODE' undeclared (first use in this function) 295 | if (ioctl(fd, KDSETMODE, enable ? KD_GRAPHICS : KD_TEXT) == -1) { | ^~~~~~~~~ ../common/terminal.c:295:43: error: 'KD_GRAPHICS' undeclared (first use in this function) 295 | if (ioctl(fd, KDSETMODE, enable ? KD_GRAPHICS : KD_TEXT) == -1) { | ^~~~~~~~~~~ ../common/terminal.c:295:57: error: 'KD_TEXT' undeclared (first use in this function) 295 | if (ioctl(fd, KDSETMODE, enable ? KD_GRAPHICS : KD_TEXT) == -1) { | ^~~~~~~ ../common/terminal.c: In function 'terminal_current_vt': ../common/terminal.c:194:1: warning: control reaches end of non-void function [-Wreturn-type] 194 | } | ^ [5/45] Compiling C object libseat-private.a.p/libseat_backend_seatd.c.o cc1: warning: '-fhardened' not supported for this target ninja: build stopped: subcommand failed. *** Error code 1 Stop. bmake[1]: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/seatd *** Error code 1 Stop. bmake: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/sysutils/seatd