Last 2000 lines of build log: 95 | binlen = 1 + BN_num_bytes(RSA_get0_e(key)) + BN_num_bytes(RSA_get0_n(key)); | ^~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:243:37: note: declared here 243 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_n(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:98:9: warning: 'RSA_get0_e' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 98 | binbuf[0] = BN_bn2bin(RSA_get0_e(key), (unsigned char *) &binbuf[1]); | ^~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:244:37: note: declared here 244 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_e(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:99:9: warning: 'RSA_get0_n' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 99 | ret = BN_bn2bin(RSA_get0_n(key), (unsigned char *) (&binbuf[binbuf[0] + 1])); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:243:37: note: declared here 243 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_n(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c: In function 'print_rsa_key': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:133:9: warning: 'RSA_get0_n' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 133 | fprintf(fp, "\t# RSA %d bits\n", BN_num_bits(RSA_get0_n(key))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:243:37: note: declared here 243 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_n(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:135:9: warning: 'RSA_get0_n' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 135 | fprintf(fp, "\tModulus: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_n(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:243:37: note: declared here 243 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_n(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:136:9: warning: 'RSA_get0_e' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 136 | fprintf(fp, "\tPublicExponent: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_e(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:244:37: note: declared here 244 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_e(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:137:9: warning: 'RSA_get0_d' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 137 | fprintf(fp, "\tPrivateExponent: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_d(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:245:37: note: declared here 245 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_d(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:138:9: warning: 'RSA_get0_p' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 138 | fprintf(fp, "\tPrime1: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_p(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:246:37: note: declared here 246 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_p(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:139:9: warning: 'RSA_get0_q' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 139 | fprintf(fp, "\tPrime2: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_q(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:247:37: note: declared here 247 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_q(const RSA *d); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:140:9: warning: 'RSA_get0_dmp1' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 140 | fprintf(fp, "\tExponent1: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_dmp1(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:248:37: note: declared here 248 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_dmp1(const RSA *r); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:141:9: warning: 'RSA_get0_dmq1' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 141 | fprintf(fp, "\tExponent2: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_dmq1(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:249:37: note: declared here 249 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_dmq1(const RSA *r); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:142:9: warning: 'RSA_get0_iqmp' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 142 | fprintf(fp, "\tCoefficient: 0x%s\n", lowercase(BN_bn2hex(RSA_get0_iqmp(key)))); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:250:37: note: declared here 250 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *RSA_get0_iqmp(const RSA *r); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c: In function 'convert_rsa_key': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:172:9: warning: 'PEM_read_RSAPrivateKey' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 172 | key = PEM_read_RSAPrivateKey(fpin, NULL, NULL, NULL); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/pem.h:457:1: note: declared here 457 | DECLARE_PEM_rw_cb_attr(OSSL_DEPRECATEDIN_3_0, RSAPrivateKey, RSA) | ^~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:175:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 175 | RSA_free(key); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:182:9: warning: 'PEM_read_RSA_PUBKEY' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 182 | key = PEM_read_RSA_PUBKEY(fpin, NULL, NULL, NULL); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/pem.h:459:1: note: declared here 459 | DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, RSA_PUBKEY, RSA) | ^~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:185:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 185 | RSA_free(key); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ --- dependall-sys --- --- dependall-if_l2tp --- --- dependall-usr.sbin --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c: In function 'gen_rsa_key': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:208:9: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 208 | key = RSA_new(); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:212:28: note: declared here 212 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:212:9: warning: 'RSA_generate_key_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 212 | if (1 != RSA_generate_key_ex(key, bits, e, NULL)) { | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:270:27: note: declared here 270 | OSSL_DEPRECATEDIN_3_0 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, | ^~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plainrsa-gen.c:218:9: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 218 | RSA_free(key); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ --- dependall-racoon --- --- getcertsbyname.d --- --- dependall-sys --- --- in6_l2tp.o --- # compile if_l2tp/in6_l2tp.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_l2tp -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/netinet6/in6_l2tp.c -o in6_l2tp.o --- dependall-usr.sbin --- # create racoon/getcertsbyname.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f getcertsbyname.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/getcertsbyname.c && mv -f getcertsbyname.d.tmp getcertsbyname.d --- grabmyaddr.d --- # create racoon/grabmyaddr.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f grabmyaddr.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/grabmyaddr.c && mv -f grabmyaddr.d.tmp grabmyaddr.d --- dependall-plainrsa-gen --- --- crypto_openssl.o --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_check_x509sign': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:856:9: warning: 'EVP_PKEY_get0_RSA' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 856 | res = eay_rsa_verify(source, sig, __UNCONST(EVP_PKEY_get0_RSA(evp))); | ^~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/pem.h:22, from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:51: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/evp.h:1396:22: note: declared here 1396 | const struct rsa_st *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_get_x509sign': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:990:9: warning: 'EVP_PKEY_get0_RSA' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 990 | sig = eay_rsa_sign(src, __UNCONST(EVP_PKEY_get0_RSA(evp))); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/evp.h:1396:22: note: declared here 1396 | const struct rsa_st *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_rsa_sign': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1010:9: warning: 'RSA_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1010 | len = RSA_size(rsa); | ^~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/x509.h:37, from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/pem.h:23: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:215:27: note: declared here 215 | OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1016:9: warning: 'RSA_private_encrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1016 | len = RSA_private_encrypt(src->l, (unsigned char *) src->v, | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:295:5: note: declared here 295 | int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_rsa_verify': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1035:9: warning: 'RSA_size' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1035 | len = RSA_size(rsa); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:215:27: note: declared here 215 | OSSL_DEPRECATEDIN_3_0 int RSA_size(const RSA *rsa); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1042:9: warning: 'RSA_public_decrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1042 | len = RSA_public_decrypt(sig->l, (unsigned char *) sig->v, | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:298:5: note: declared here 298 | int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_strerror': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1075:9: warning: 'ERR_get_error_line_data' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1075 | while ((l = ERR_get_error_line_data(&file, &line, &data, &flags)) != 0){ | ^~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/engine.h:31, from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:64: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/err.h:427:15: note: declared here 427 | unsigned long ERR_get_error_line_data(const char **file, int *line, | ^~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_des_weakkey': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1197:9: warning: 'DES_is_weak_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1197 | return DES_is_weak_key((void *)key->v); | ^~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:61: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/des.h:178:27: note: declared here 178 | OSSL_DEPRECATEDIN_3_0 int DES_is_weak_key(const_DES_cblock *key); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_3des_weakkey': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1383:9: warning: 'DES_is_weak_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1383 | return (DES_is_weak_key((void *)key->v) || | ^~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/des.h:178:27: note: declared here 178 | OSSL_DEPRECATEDIN_3_0 int DES_is_weak_key(const_DES_cblock *key); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1384:13: warning: 'DES_is_weak_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1384 | DES_is_weak_key((void *)(key->v + 8)) || | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/des.h:178:27: note: declared here 178 | OSSL_DEPRECATEDIN_3_0 int DES_is_weak_key(const_DES_cblock *key); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1385:13: warning: 'DES_is_weak_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1385 | DES_is_weak_key((void *)(key->v + 16))); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/des.h:178:27: note: declared here 178 | OSSL_DEPRECATEDIN_3_0 int DES_is_weak_key(const_DES_cblock *key); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmac_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1665:9: warning: 'HMAC_CTX_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1665 | HMAC_CTX *c = HMAC_CTX_new(); | ^~~~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:60: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:33:33: note: declared here 33 | OSSL_DEPRECATEDIN_3_0 HMAC_CTX *HMAC_CTX_new(void); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1667:9: warning: 'HMAC_Init_ex' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1667 | HMAC_Init_ex(c, key->v, key->l, md, NULL); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:43:27: note: declared here 43 | OSSL_DEPRECATEDIN_3_0 int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_512_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1723:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1723 | HMAC_Update((HMAC_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_512_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1736:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1736 | HMAC_Final(c, (unsigned char *) res->v, &l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1738:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1738 | HMAC_CTX_free(c); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_384_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1768:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1768 | HMAC_Update((HMAC_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_384_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1781:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1781 | HMAC_Final(c, (unsigned char *) res->v, &l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1783:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1783 | HMAC_CTX_free(c); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_256_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1812:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1812 | HMAC_Update((HMAC_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha2_256_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1825:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1825 | HMAC_Final(c, (unsigned char *) res->v, &l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1827:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1827 | HMAC_CTX_free(c); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha1_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1858:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1858 | HMAC_Update((HMAC_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacsha1_final': --- genlist.o --- --- crypto_openssl.o --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1871:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1871 | HMAC_Final(c, (unsigned char *) res->v, &l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1873:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1873 | HMAC_CTX_free(c); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacmd5_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1903:9: warning: 'HMAC_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1903 | HMAC_Update((HMAC_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:45:27: note: declared here 45 | OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, | ^~~~~~~~~~~ --- genlist.o --- # compile plainrsa-gen/genlist.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/genlist.c -o genlist.o --- crypto_openssl.o --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_hmacmd5_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1916:9: warning: 'HMAC_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1916 | HMAC_Final(c, (unsigned char *) res->v, &l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:47:27: note: declared here 47 | OSSL_DEPRECATEDIN_3_0 int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1918:9: warning: 'HMAC_CTX_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1918 | HMAC_CTX_free(c); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/hmac.h:35:28: note: declared here 35 | OSSL_DEPRECATEDIN_3_0 void HMAC_CTX_free(HMAC_CTX *ctx); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_512_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1939:9: warning: 'SHA512_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1939 | SHA512_Init(c); | ^~~~~~~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/x509.h:42: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:124:27: note: declared here 124 | OSSL_DEPRECATEDIN_3_0 int SHA512_Init(SHA512_CTX *c) __RENAME(_OpenSSL_SHA512_Init); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_512_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1947:9: warning: 'SHA512_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1947 | SHA512_Update((SHA512_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:125:27: note: declared here 125 | OSSL_DEPRECATEDIN_3_0 int SHA512_Update(SHA512_CTX *c, | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_512_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1960:9: warning: 'SHA512_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1960 | SHA512_Final((unsigned char *) res->v, (SHA512_CTX *)c); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:127:27: note: declared here 127 | OSSL_DEPRECATEDIN_3_0 int SHA512_Final(unsigned char *md, SHA512_CTX *c) __RENAME(_OpenSSL_SHA512_Final); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_384_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1988:9: warning: 'SHA384_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1988 | SHA384_Init(c); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:120:27: note: declared here 120 | OSSL_DEPRECATEDIN_3_0 int SHA384_Init(SHA512_CTX *c) __RENAME(_OpenSSL_SHA384_Init); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_384_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:1996:9: warning: 'SHA384_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 1996 | SHA384_Update((SHA384_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:121:27: note: declared here 121 | OSSL_DEPRECATEDIN_3_0 int SHA384_Update(SHA512_CTX *c, | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_384_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2009:9: warning: 'SHA384_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2009 | SHA384_Final((unsigned char *) res->v, (SHA384_CTX *)c); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:123:27: note: declared here 123 | OSSL_DEPRECATEDIN_3_0 int SHA384_Final(unsigned char *md, SHA512_CTX *c) __RENAME(_OpenSSL_SHA384_Final); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_256_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2037:9: warning: 'SHA256_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2037 | SHA256_Init(c); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:73:27: note: declared here 73 | OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c) __RENAME(_OpenSSL_SHA256_Init); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_256_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2045:9: warning: 'SHA256_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2045 | SHA256_Update((SHA256_CTX *)c, (unsigned char *) data->v, data->l); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:74:27: note: declared here 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c, | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha2_256_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2058:9: warning: 'SHA256_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2058 | SHA256_Final((unsigned char *) res->v, (SHA256_CTX *)c); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:76:27: note: declared here 76 | OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c) __RENAME(_OpenSSL_SHA256_Final); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha1_init': --- dependall-sys --- --- dependall-if_agr --- --- dependall-usr.sbin --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2085:9: warning: 'SHA1_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2085 | SHA1_Init(c); | ^~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:49:27: note: declared here 49 | OSSL_DEPRECATEDIN_3_0 int SHA1_Init(SHA_CTX *c); | ^~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha1_update': --- dependall-sys --- --- ieee8023ad_lacp_timer.o --- --- dependall-usr.sbin --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2093:9: warning: 'SHA1_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2093 | SHA1_Update((SHA_CTX *)c, data->v, data->l); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int SHA1_Update(SHA_CTX *c, const void *data, size_t len); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_sha1_final': --- dependall-sys --- # compile if_agr/ieee8023ad_lacp_timer.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/ieee8023ad_lacp_timer.c -o ieee8023ad_lacp_timer.o --- dependall-usr.sbin --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2106:9: warning: 'SHA1_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2106 | SHA1_Final((unsigned char *) res->v, (SHA_CTX *)c); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/sha.h:51:27: note: declared here 51 | OSSL_DEPRECATEDIN_3_0 int SHA1_Final(unsigned char *md, SHA_CTX *c); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_md5_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2132:9: warning: 'MD5_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2132 | MD5_Init(c); | ^~~~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:58: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/md5.h:49:27: note: declared here 49 | OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_md5_update': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2140:9: warning: 'MD5_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2140 | MD5_Update((MD5_CTX *)c, data->v, data->l); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/md5.h:50:27: note: declared here 50 | OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len); | ^~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_md5_final': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2153:9: warning: 'MD5_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2153 | MD5_Final((unsigned char *) res->v, (MD5_CTX *)c); | ^~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/md5.h:51:27: note: declared here 51 | OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c); | ^~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_dh_generate': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2207:9: warning: 'DH_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2207 | if ((dh = DH_new()) == NULL) | ^~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dsa.h:31, from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/x509.h:38: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:210:27: note: declared here 210 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void); | ^~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2213:9: warning: 'DH_set0_pqg' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2213 | if (!DH_set0_pqg(dh, p, NULL, g)) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:266:27: note: declared here 266 | OSSL_DEPRECATEDIN_3_0 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2218:17: warning: 'DH_set_length' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2218 | DH_set_length(dh, publen); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:280:27: note: declared here 280 | OSSL_DEPRECATEDIN_3_0 int DH_set_length(DH *dh, long length); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2221:9: warning: 'DH_generate_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2221 | if (!DH_generate_key(dh)) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:234:27: note: declared here 234 | OSSL_DEPRECATEDIN_3_0 int DH_generate_key(DH *dh); | ^~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2224:9: warning: 'DH_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2224 | DH_get0_key(dh, &pub_key, &priv_key); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:267:28: note: declared here 267 | OSSL_DEPRECATEDIN_3_0 void DH_get0_key(const DH *dh, const BIGNUM **pub_key, | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2238:17: warning: 'DH_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2238 | DH_free(dh); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:211:28: note: declared here 211 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_dh_compute': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2260:9: warning: 'DH_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2260 | if ((dh = DH_new()) == NULL) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:210:27: note: declared here 210 | OSSL_DEPRECATEDIN_3_0 DH *DH_new(void); | ^~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2270:9: warning: 'DH_set_length' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2270 | DH_set_length(dh, pub2->l * 8); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:280:27: note: declared here 280 | OSSL_DEPRECATEDIN_3_0 int DH_set_length(DH *dh, long length); | ^~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2277:9: warning: 'DH_set0_pqg' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2277 | if (!DH_set0_pqg(dh, p, NULL, g)) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:266:27: note: declared here 266 | OSSL_DEPRECATEDIN_3_0 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2281:9: warning: 'DH_set0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2281 | if (!DH_set0_key(dh, pub_key, priv_key)) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:269:27: note: declared here 269 | OSSL_DEPRECATEDIN_3_0 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key); | ^~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2288:9: warning: 'DH_compute_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2288 | if ((l = DH_compute_key(v, dh_pub, dh)) == -1) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:235:27: note: declared here 235 | OSSL_DEPRECATEDIN_3_0 int DH_compute_key(unsigned char *key, | ^~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2301:17: warning: 'DH_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2301 | DH_free(dh); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/dh.h:211:28: note: declared here 211 | OSSL_DEPRECATEDIN_3_0 void DH_free(DH *dh); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'eay_init': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2347:9: warning: 'ENGINE_load_builtin_engines' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2347 | ENGINE_load_builtin_engines(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/engine.h:358:28: note: declared here 358 | OSSL_DEPRECATEDIN_3_0 void ENGINE_load_builtin_engines(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2348:9: warning: 'ENGINE_register_all_complete' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2348 | ENGINE_register_all_complete(); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/engine.h:415:27: note: declared here 415 | OSSL_DEPRECATEDIN_3_0 int ENGINE_register_all_complete(void); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c: In function 'binbuf_pubkey2rsa': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2434:9: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2434 | rsa_pub = RSA_new(); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:212:28: note: declared here 212 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2441:9: warning: 'RSA_set0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2441 | if (!RSA_set0_key(rsa_pub, mod, exp, NULL)) | ^~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:218:27: note: declared here 218 | OSSL_DEPRECATEDIN_3_0 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/crypto_openssl.c:2447:9: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 2447 | RSA_free(rsa_pub); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ --- dependall-racoon --- --- gssapi.d --- # create racoon/gssapi.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f gssapi.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/gssapi.c && mv -f gssapi.d.tmp gssapi.d --- dependall-sys --- --- dependall-if_loop --- --- if_loop.kmod --- --- dependall-usr.sbin --- --- dependall-plainrsa-gen --- --- plainrsa-gen.o --- --- logger.o --- --- dependall-sys --- # link if_loop/if_loop.kmod --- dependall-usr.sbin --- # compile plainrsa-gen/logger.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/logger.c -o logger.o --- dependall-sys --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_loop.kmod.map -o if_loop.kmod if_loop.o --- dependall-usr.sbin --- --- genlist.o --- --- misc.o --- # compile plainrsa-gen/misc.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/misc.c -o misc.o --- dependall-racoon --- --- handler.d --- # create racoon/handler.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f handler.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/handler.c && mv -f handler.d.tmp handler.d --- dependall-rtadvd --- --- if.o --- # compile rtadvd/if.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/if.c -o if.o --- dependall-sys --- --- dependall-if_agr --- --- ieee8023ad_marker.o --- # compile if_agr/ieee8023ad_marker.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/ieee8023ad_marker.c -o ieee8023ad_marker.o --- dependall-usr.sbin --- --- dependall-racoon --- --- ipsec_doi.d --- # create racoon/ipsec_doi.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ipsec_doi.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c && mv -f ipsec_doi.d.tmp ipsec_doi.d --- dependall-plainrsa-gen --- --- logger.o --- --- plog.o --- # compile plainrsa-gen/plog.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plog.c -o plog.o --- dependall-racoon --- --- isakmp.d --- # create racoon/isakmp.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp.c && mv -f isakmp.d.tmp isakmp.d --- dependall-plainrsa-gen --- --- misc.o --- --- prsa_par.o --- # compile plainrsa-gen/prsa_par.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c -Wno-error=deprecated-declarations prsa_par.c -o prsa_par.o --- dependall-sys --- --- dependall-if_l2tp --- --- if_l2tp.kmod --- # link if_l2tp/if_l2tp.kmod /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_l2tp.kmod.map -o if_l2tp.kmod if_l2tp.o in_l2tp.o in6_l2tp.o --- dependall-if_mpls --- dependall ===> sys/modules/if_mpls --- dependall-usr.sbin --- --- dependall-racoon --- --- isakmp_agg.d --- # create racoon/isakmp_agg.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_agg.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_agg.c && mv -f isakmp_agg.d.tmp isakmp_agg.d --- dependall-sys --- --- dependall-if_agr --- --- if_agrether.o --- # compile if_agr/if_agrether.o --- dependall-if_mpls --- --- ioconf.c --- --- dependall-if_agr --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agrether.c -o if_agrether.o --- dependall-if_mpls --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbconfig -b /tmp/build/2026.03.19.06.16.17-alpha/obj/sys/modules/if_mpls -s /tmp/build/2026.03.19.06.16.17-alpha/src/sys /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mpls/mpls.ioconf --- dependall-usr.sbin --- --- dependall-ypserv --- --- dependall-ypserv --- --- getnetnamadr.o --- # compile ypserv/getnetnamadr.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DOPTIMIZE_DB -DLIBWRAP -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libc/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/ypserv/ypserv/../common -D_KERNTYPES -c -UYP -D_LIBC /tmp/build/2026.03.19.06.16.17-alpha/src/lib/libc/net/getnetnamadr.c -o getnetnamadr.o --- dependall-sys --- touch ioconf.c ioconf.h locators.h --- if_mpls.d --- # create if_mpls/if_mpls.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_mpls.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mpls -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/if_mpls.c && mv -f if_mpls.d.tmp if_mpls.d --- dependall-if_mue --- dependall ===> sys/modules/if_mue --- dependall-usr.sbin --- --- dependall-rtadvd --- --- config.o --- # compile rtadvd/config.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/config.c -o config.o --- dependall-sys --- --- ioconf.c --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbconfig -b /tmp/build/2026.03.19.06.16.17-alpha/obj/sys/modules/if_mue -s /tmp/build/2026.03.19.06.16.17-alpha/src/sys /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mue/if_mue.ioconf --- dependall-usr.sbin --- --- dependall-racoon --- --- isakmp_base.d --- --- dependall-plainrsa-gen --- --- plog.o --- --- dependall-racoonctl --- --- dependall-racoon --- # create racoon/isakmp_base.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_base.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_base.c && mv -f isakmp_base.d.tmp isakmp_base.d --- dependall-racoonctl --- dependall ===> usr.sbin/racoonctl --- dependall-sys --- --- dependall-if_mpls --- --- ioconf.d --- # create if_mpls/ioconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ioconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mpls -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR ioconf.c && mv -f ioconf.d.tmp ioconf.d --- dependall-usr.sbin --- --- kmpstat.d --- # create racoonctl/kmpstat.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f kmpstat.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/kmpstat.c && mv -f kmpstat.d.tmp kmpstat.d --- dependall-sys --- --- dependall-if_mue --- touch ioconf.c ioconf.h locators.h --- if_mue.d --- # create if_mue/if_mue.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_mue.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mue -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/dev/usb/if_mue.c && mv -f if_mue.d.tmp if_mue.d --- dependall-usr.sbin --- --- dependall-plainrsa-gen --- --- prsa_par.o --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y: In function 'prsa_parse_file': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:423:9: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 423 | rsa_cur = RSA_new(); | ^~~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:62: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:212:28: note: declared here 212 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:426:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 426 | RSA_free(rsa_cur); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y: In function 'prsaparse': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:192:25: warning: 'RSA_set0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 192 | } else if (1 != RSA_set0_key(rsa_cur, bn_n, bn_e, NULL)) { | ^ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:218:27: note: declared here 218 | OSSL_DEPRECATEDIN_3_0 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:201:25: warning: 'RSA_set0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 201 | } else if (1 != RSA_set0_key(rsa_cur, bn_n, bn_e, bn_d)) { | ^ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:218:27: note: declared here 218 | OSSL_DEPRECATEDIN_3_0 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:208:25: warning: 'RSA_set0_factors' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 208 | } else if (1 != RSA_set0_factors(rsa_cur, bn_p, bn_q)) { | ^ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:219:27: note: declared here 219 | OSSL_DEPRECATEDIN_3_0 int RSA_set0_factors(RSA *r, BIGNUM *p, BIGNUM *q); | ^~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:211:25: warning: 'RSA_set0_crt_params' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 211 | } else if (1 != RSA_set0_crt_params(rsa_cur, bn_dmp1, bn_dmq1, bn_iqmp)) { | ^ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:220:27: note: declared here 220 | OSSL_DEPRECATEDIN_3_0 int RSA_set0_crt_params(RSA *r, | ^~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/prsa_par.y:218:17: warning: 'RSA_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 218 | rsa_cur = RSA_new(); | ^~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:212:28: note: declared here 212 | OSSL_DEPRECATEDIN_3_0 RSA *RSA_new(void); | ^~~~~~~ --- dependall-sys --- --- dependall-if_mpls --- --- .depend --- # create if_mpls/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_mpls.d ioconf.d --- dependall --- --- dependall-usr.sbin --- --- dependall-route6d --- --- route6d --- # link route6d/route6d /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o route6d route6d.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lutil --- dependall-racoon --- --- isakmp_cfg.d --- # create racoon/isakmp_cfg.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_cfg.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -Wno-stringop-truncation -Wno-error=format-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_cfg.c && mv -f isakmp_cfg.d.tmp isakmp_cfg.d --- dependall-nvmmctl --- --- dependall-racoonctl --- --- misc.d --- --- dependall-sys --- --- dependall-if_agr --- --- dependall-usr.sbin --- --- dependall-nvmmctl --- dependall ===> usr.sbin/nvmmctl --- dependall-sys --- --- if_agrether_hash.o --- --- dependall-usr.sbin --- --- dependall-racoonctl --- # create racoonctl/misc.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f misc.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/misc.c && mv -f misc.d.tmp misc.d --- dependall-sys --- # compile if_agr/if_agrether_hash.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agrether_hash.c -o if_agrether_hash.o --- dependall-if_mue --- --- ioconf.d --- --- dependall-if_mpls --- --- if_mpls.o --- --- dependall-usr.sbin --- --- dependall-nvmmctl --- --- dependall --- --- dependall-sys --- --- dependall-if_mue --- # create if_mue/ioconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ioconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mue -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR ioconf.c && mv -f ioconf.d.tmp ioconf.d --- dependall-if_mpls --- # compile if_mpls/if_mpls.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mpls -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/if_mpls.c -o if_mpls.o --- dependall-usr.sbin --- --- nvmmctl.html8 --- # format nvmmctl/nvmmctl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/nvmmctl/nvmmctl.8 > nvmmctl.html8.tmp && mv -f nvmmctl.html8.tmp nvmmctl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/nvmmctl/nvmmctl.8 > nvmmctl.html8.tmp && mv -f nvmmctl.html8.tmp nvmmctl.html8; fi --- dependall-npf --- --- dependall-ypserv --- --- dependall-npf --- dependall ===> usr.sbin/npf --- dependall-ypserv --- --- ypserv --- # link ypserv/ypserv /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o ypserv ypserv.o ypserv_proc.o ypserv_db.o ypserv_xdr.o gethnamaddr.o getnetnamadr.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lwrap -lblocklist -lutil -L/tmp/build/2026.03.19.06.16.17-alpha/obj/usr.sbin/ypserv/common -lcommon --- dependall-npf --- --- dependall-npfctl --- --- dependall-racoonctl --- --- racoonctl.d --- --- dependall-npf --- dependall ===> usr.sbin/npf/npfctl --- dependall-racoonctl --- # create racoonctl/racoonctl.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f racoonctl.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/racoonctl.c && mv -f racoonctl.d.tmp racoonctl.d --- dependall-sys --- --- dependall-if_mue --- --- .depend --- # create if_mue/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_mue.d ioconf.d --- dependall --- --- dependall-usr.sbin --- --- dependall-npf --- --- npf_scan.c --- # lex npfctl/npf_scan.c /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nblex -onpf_scan.c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_scan.l --- dependall-racoon --- --- isakmp_frag.d --- # create racoon/isakmp_frag.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_frag.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_frag.c && mv -f isakmp_frag.d.tmp isakmp_frag.d --- dependall-ypserv --- --- dependall --- --- dependall-external --- --- reader_test --- # link tools/reader_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o reader_test reader_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-usr.sbin --- --- dependall-npf --- --- npf_parse.c --- # yacc npfctl/npf_parse.c /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbyacc -d -o npf_parse.c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_parse.y --- npf_bpf_comp.d --- # create npfctl/npf_bpf_comp.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_bpf_comp.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_bpf_comp.c && mv -f npf_bpf_comp.d.tmp npf_bpf_comp.d --- dependall-racoon --- --- isakmp_ident.d --- --- dependall-racoonctl --- --- sockmisc.d --- --- dependall-racoon --- # create racoon/isakmp_ident.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_ident.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_ident.c && mv -f isakmp_ident.d.tmp isakmp_ident.d --- dependall-racoonctl --- # create racoonctl/sockmisc.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f sockmisc.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/sockmisc.c && mv -f sockmisc.d.tmp sockmisc.d --- dependall-external --- --- dependall-gpl3 --- --- trimmed-graph.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x trimmed-graph.o --- insn-automata.o --- --- dependall-sys --- --- if_mue.o --- --- dependall-external --- # compile backend/insn-automata.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ -frandom-seed=02bd4ca6 -O2 -Wno-format-diag -Wall -Wpointer-arith -Wno-sign-compare -Wa,--fatal-warnings -Werror -mieee -Wno-narrowing -Wno-unused -Wno-stack-protector -fno-exceptions -fno-rtti -fasynchronous-unwind-tables --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DLOCALEDIR=\"/usr/share/locale\" -DNETBSD_NATIVE -I. -DENABLE_SHARED_LIBGCC -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/usr.bin/backend/../gcc/arch/alpha -DIN_GCC -DHAVE_CONFIG_H -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/. -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../include -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../libcpp/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../libcody -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../libdecnumber -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../libdecnumber/dpd -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/gcc/../libbacktrace -DTARGET_NAME=\"alpha--netbsd\" -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/dist/libgcc -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/usr.bin/backend/../../lib/libgcc/libgcov/arch/alpha -c insn-automata.cc -o insn-automata.o --- dependall-sys --- # compile if_mue/if_mue.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_mue -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/dev/usb/if_mue.c -o if_mue.o --- dependall-usr.sbin --- --- str2val.d --- # create racoonctl/str2val.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f str2val.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/str2val.c && mv -f str2val.d.tmp str2val.d --- dependall-npf --- --- npf_build.d --- # create npfctl/npf_build.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_build.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_build.c && mv -f npf_build.d.tmp npf_build.d --- dependall-racoonctl --- --- vmbuf.d --- # create racoonctl/vmbuf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f vmbuf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/vmbuf.c && mv -f vmbuf.d.tmp vmbuf.d --- dependall-plainrsa-gen --- --- dependall-sys --- --- dependall-if_ncm --- dependall ===> sys/modules/if_ncm --- dependall-if_agr --- --- if_agrmonitor.o --- # compile if_agr/if_agrmonitor.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.--- dependall-if_npflog --- --- dependall-if_agr --- 19.06.16.17-alpha/src/sys/net/agr/if_agrmonitor.c -o if_agrmonitor.o --- dependall-if_npflog --- dependall ===> sys/modules/if_npflog --- dependall-usr.sbin --- --- dependall-racoon --- --- isakmp_inf.d --- # create racoon/isakmp_inf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_inf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_inf.c && mv -f isakmp_inf.d.tmp isakmp_inf.d --- dependall-racoonctl --- --- .depend --- # create racoonctl/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend kmpstat.d misc.d racoonctl.d sockmisc.d str2val.d vmbuf.d --- dependall-sys --- --- dependall-if_ncm --- --- ioconf.c --- --- dependall-if_npflog --- --- if_npflog.d --- --- dependall-usr.sbin --- --- dependall --- --- dependall-npf --- --- npf_cmd.d --- --- dependall-sys --- --- dependall-if_ncm --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbconfig -b /tmp/build/2026.03.19.06.16.17-alpha/obj/sys/modules/if_ncm -s /tmp/build/2026.03.19.06.16.17-alpha/src/sys /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ncm/if_ncm.ioconf --- dependall-if_npflog --- # create if_npflog/if_npflog.d --- dependall-usr.sbin --- # create npfctl/npf_cmd.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_cmd.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_cmd.c && mv -f npf_cmd.d.tmp npf_cmd.d --- dependall-sys --- --- dependall-if_lagg --- --- dependall-if_npflog --- CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_npflog.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_npflog -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/npf/if_npflog.c && mv -f if_npflog.d.tmp if_npflog.d --- dependall-if_lagg --- --- if_lagg.o --- # compile if_lagg/if_lagg.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_lagg -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/lagg/if_lagg.c -o if_lagg.o --- dependall-usr.sbin --- --- dependall-racoonctl --- --- .gdbinit --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-sys --- --- dependall-if_ncm --- touch ioconf.c ioconf.h locators.h --- dependall-usr.sbin --- --- racoonctl.html8 --- # format racoonctl/racoonctl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/racoonctl.8 > racoonctl.html8.tmp && mv -f racoonctl.html8.tmp racoonctl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/racoonctl.8 > racoonctl.html8.tmp && mv -f racoonctl.html8.tmp racoonctl.html8; fi --- dependall-sys --- --- if_ncm.d --- # create if_ncm/if_ncm.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_ncm.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ncm -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/dev/usb/if_ncm.c && mv -f if_ncm.d.tmp if_ncm.d --- dependall-usr.sbin --- --- racoonctl.o --- --- dependall-npf --- --- npf_data.d --- --- dependall-racoonctl --- # compile racoonctl/racoonctl.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/racoonctl.c -o racoonctl.o --- dependall-npf --- # create npfctl/npf_data.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_data.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_data.c && mv -f npf_data.d.tmp npf_data.d --- dependall-sys --- --- dependall-if_npflog --- --- .depend --- # create if_npflog/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_npflog.d --- dependall --- --- dependall-usr.sbin --- --- dependall-racoon --- --- isakmp_newg.d --- # create racoon/isakmp_newg.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_newg.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_newg.c && mv -f isakmp_newg.d.tmp isakmp_newg.d --- dependall-sys --- --- dependall-if_agr --- --- dependall-external --- --- dependall-bsd --- --- signals_test --- --- dependall-sys --- --- if_agrsoftc.o --- --- dependall-if_ncm --- --- ioconf.d --- --- dependall-external --- # link tools/signals_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o signals_test signals_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-sys --- --- dependall-if_agr --- # compile if_agr/if_agrsoftc.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agrsoftc.c -o if_agrsoftc.o --- dependall-usr.sbin --- --- dependall-plainrsa-gen --- --- crypto_openssl.o --- --- dependall-sys --- --- dependall-if_ncm --- # create if_ncm/ioconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ioconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ncm -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR ioconf.c && mv -f ioconf.d.tmp ioconf.d --- dependall-usr.sbin --- --- rsalist.o --- # compile plainrsa-gen/rsalist.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c -Wno-error=deprecated-declarations /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c -o rsalist.o --- dependall-npf --- --- npf_extmod.d --- # create npfctl/npf_extmod.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_extmod.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_extmod.c && mv -f npf_extmod.d.tmp npf_extmod.d --- dependall-sys --- --- dependall-if_npflog --- --- if_npflog.o --- # compile if_npflog/if_npflog.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_npflog -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/npf/if_npflog.c -o if_npflog.o --- dependall-if_ncm --- --- .depend --- # create if_ncm/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_ncm.d ioconf.d --- dependall --- --- dependall-usr.sbin --- --- npf_parse.d --- # create npfctl/npf_parse.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_parse.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES npf_parse.c && mv -f npf_parse.d.tmp npf_parse.d --- dependall-racoon --- --- isakmp_quick.d --- --- dependall-external --- --- requirements_test --- --- dependall-usr.sbin --- # create racoon/isakmp_quick.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_quick.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_quick.c && mv -f isakmp_quick.d.tmp isakmp_quick.d --- dependall-external --- # link tools/requirements_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o requirements_test requirements_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-sys --- --- if_ncm.o --- # compile if_ncm/if_ncm.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ncm -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/dev/usb/if_ncm.c -o if_ncm.o --- dependall-if_agr --- --- if_agrsubr.o --- # compile if_agr/if_agrsubr.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agrsubr.c -o if_agrsubr.o --- dependall-usr.sbin --- --- dependall-npf --- --- npf_scan.d --- # create npfctl/npf_scan.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_scan.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES npf_scan.c && mv -f npf_scan.d.tmp npf_scan.d --- dependall-sys --- --- dependall-if_mpls --- --- if_mpls.kmod --- # link if_mpls/if_mpls.kmod --- dependall-usr.sbin --- --- dependall-rtadvd --- --- timer.o --- # compile rtadvd/timer.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/timer.c -o timer.o --- dependall-sys --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_mpls.kmod.map -o if_mpls.kmod if_mpls.o --- dependall-usr.sbin --- --- dump.o --- # compile rtadvd/dump.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/dump.c -o dump.o --- dependall-racoon --- --- isakmp_unity.d --- # create racoon/isakmp_unity.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_unity.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_unity.c && mv -f isakmp_unity.d.tmp isakmp_unity.d --- dependall-plainrsa-gen --- /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c: In function 'rsa_key_dup': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:100:17: warning: 'RSA_get0_key' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 100 | RSA_get0_key(key->rsa, NULL, NULL, &d); | ^~~~~~~~~~~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:46: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:228:28: note: declared here 228 | OSSL_DEPRECATEDIN_3_0 void RSA_get0_key(const RSA *r, | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:101:17: warning: 'RSAPrivateKey_dup' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 101 | new->rsa = d != NULL ? RSAPrivateKey_dup(key->rsa) : RSAPublicKey_dup(key->rsa); | ^~~ In file included from /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:21: /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:459:1: note: declared here 459 | DECLARE_ASN1_DUP_FUNCTION_name_attr(OSSL_DEPRECATEDIN_3_0, RSA, RSAPrivateKey) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:101:17: warning: 'RSAPublicKey_dup' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 101 | new->rsa = d != NULL ? RSAPrivateKey_dup(key->rsa) : RSAPublicKey_dup(key->rsa); | ^~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:458:1: note: declared here 458 | DECLARE_ASN1_DUP_FUNCTION_name_attr(OSSL_DEPRECATEDIN_3_0, RSA, RSAPublicKey) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:123:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 123 | RSA_free(new->rsa); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c: In function 'rsa_key_free': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:145:17: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 145 | RSA_free(rsa_key->rsa); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:303:28: note: declared here 303 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c: In function 'rsa_key_dump_one': /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/rsalist.c:160:17: warning: 'RSA_print_fp' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 160 | RSA_print_fp(stdout, key->rsa, 4); | ^~~~~~~~~~~~ /tmp/build/2026.03.19.06.16.17-alpha/destdir/usr/include/openssl/rsa.h:349:27: note: declared here 349 | OSSL_DEPRECATEDIN_3_0 int RSA_print_fp(FILE *fp, const RSA *r, int offset); | ^~~~~~~~~~~~ --- dependall-npf --- --- npf_show.d --- --- dependall-external --- --- ui_test --- # link tools/ui_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o ui_test ui_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-usr.sbin --- # create npfctl/npf_show.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_show.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_show.c && mv -f npf_show.d.tmp npf_show.d --- dependall-sys --- --- dependall-if_npflog --- --- if_npflog.kmod --- # link if_npflog/if_npflog.kmod /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_npflog.kmod.map -o if_npflog.kmod if_npflog.o --- dependall-usr.sbin --- --- dependall-plainrsa-gen --- --- sockmisc.o --- # compile plainrsa-gen/sockmisc.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/sockmisc.c -o sockmisc.o --- dependall-racoon --- --- isakmp_xauth.d --- # create racoon/isakmp_xauth.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f isakmp_xauth.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/isakmp_xauth.c && mv -f isakmp_xauth.d.tmp isakmp_xauth.d --- dependall-npf --- --- npf_var.d --- # create npfctl/npf_var.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_var.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_var.c && mv -f npf_var.d.tmp npf_var.d --- dependall-rtadvd --- --- timer.o --- --- dependall-pf --- dependall ===> usr.sbin/pf --- dependall-npf --- --- npfctl.d --- # create npfctl/npfctl.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npfctl.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npfctl.c && mv -f npfctl.d.tmp npfctl.d --- dependall-pf --- --- dependall-authpf --- dependall ===> usr.sbin/pf/authpf --- dependall-external --- --- test_program_test --- # link tools/test_program_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o test_program_test test_program_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-usr.sbin --- --- authpf.d --- # create authpf/authpf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f authpf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -D_OPENBSD_SOURCE -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/authpf/authpf.c && mv -f authpf.d.tmp authpf.d --- dependall-plainrsa-gen --- --- rsalist.o --- --- vmbuf.o --- # compile plainrsa-gen/vmbuf.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/vmbuf.c -o vmbuf.o --- dependall-npf --- --- .depend --- # create npfctl/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend npf_bpf_comp.d npf_build.d npf_cmd.d npf_data.d npf_extmod.d npf_parse.d npf_scan.d npf_show.d npf_var.d npfctl.d --- dependall --- --- dependall-racoon --- --- localconf.d --- # create racoon/localconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f localconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/localconf.c && mv -f localconf.d.tmp localconf.d --- dependall-npf --- --- .gdbinit --- --- dependall-pf --- --- .depend --- --- dependall-npf --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-pf --- # create authpf/.depend rm -f .depend --- dependall-npf --- --- npfctl.html8 --- --- dependall-pf --- CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend authpf.d --- dependall-npf --- # format npfctl/npfctl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npfctl.8 > npfctl.html8.tmp && mv -f npfctl.html8.tmp npfctl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npfctl.8 > npfctl.html8.tmp && mv -f npfctl.html8.tmp npfctl.html8; fi --- dependall-pf --- --- dependall --- --- dependall-npf --- --- npf.conf.html5 --- # format npfctl/npf.conf.html5 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf.conf.5 > npf.conf.html5.tmp && mv -f npf.conf.html5.tmp npf.conf.html5; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf.conf.5 > npf.conf.html5.tmp && mv -f npf.conf.html5.tmp npf.conf.html5; fi --- npfctl.o --- # compile npfctl/npfctl.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npfctl.c -o npfctl.o --- dependall-pf --- --- .gdbinit --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- authpf.html8 --- # format authpf/authpf.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/authpf/authpf.8 > authpf.html8.tmp && mv -f authpf.html8.tmp authpf.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/authpf/authpf.8 > authpf.html8.tmp && mv -f authpf.html8.tmp authpf.html8; fi --- dependall-racoon --- --- logger.d --- # create racoon/logger.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f logger.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/logger.c && mv -f logger.d.tmp logger.d --- dependall-sys --- --- dependall-if_agr --- --- dependall-if_mue --- --- dependall-if_agr --- --- if_agrtimer.o --- --- dependall-if_mue --- --- if_mue.kmod --- --- dependall-usr.sbin --- --- dependall-pf --- --- authpf.o --- --- dependall-sys --- --- dependall-if_agr --- # compile if_agr/if_agrtimer.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agrtimer.c -o if_agrtimer.o --- dependall-if_mue --- # link if_mue/if_mue.kmod /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_mue.kmod.map -o if_mue.kmod if_mue.o --- dependall-usr.sbin --- # compile authpf/authpf.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -mieee -D_OPENBSD_SOURCE -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/authpf/authpf.c -o authpf.o --- dependall-rtadvd --- --- dump.o --- --- dependall-cnwctl --- --- dependall-rtadvd --- --- expandm.o --- # compile rtadvd/expandm.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap/expandm.c -o expandm.o --- dependall-cnwctl --- dependall ===> usr.sbin/cnwctl --- dependall-plainrsa-gen --- --- dependall-rtadvd --- --- rtadvd_hostops.o --- --- dependall-cnwctl --- --- cnwctl.d --- # create cnwctl/cnwctl.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f cnwctl.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/cnwctl/cnwctl.c && mv -f cnwctl.d.tmp cnwctl.d --- dependall-rtadvd --- # compile rtadvd/rtadvd_hostops.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/rtadvd_hostops.c -o rtadvd_hostops.o --- dependall-sys --- --- dependall-if_ncm --- --- if_ncm.kmod --- # link if_ncm/if_ncm.kmod /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_ncm.kmod.map -o if_ncm.kmod if_ncm.o --- dependall-usr.sbin --- --- dependall-racoon --- --- main.d --- # create racoon/main.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f main.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/main.c && mv -f main.d.tmp main.d --- dependall-sys --- --- dependall-if_ppp --- dependall ===> sys/modules/if_ppp --- dependall-external --- --- user_test --- # link tools/user_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o user_test user_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-gpl3 --- --- svalue.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x svalue.o --- insn-attrtab.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x insn-attrtab.o --- dependall-usr.sbin --- --- dependall-npf --- --- dependall-npfd --- dependall ===> usr.sbin/npf/npfd --- dependall-plainrsa-gen --- --- prsa_tok.o --- # compile plainrsa-gen/prsa_tok.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DNOUSE_PRIVSEP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -c -Wno-error=unused-function prsa_tok.c -o prsa_tok.o --- dependall-sys --- --- ioconf.c --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbconfig -b /tmp/build/2026.03.19.06.16.17-alpha/obj/sys/modules/if_ppp -s /tmp/build/2026.03.19.06.16.17-alpha/src/sys /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp/ppp.ioconf --- dependall-usr.sbin --- --- dependall-cnwctl --- --- .depend --- # create cnwctl/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend cnwctl.d --- dependall-rtadvd --- --- dependall-cnwctl --- --- dependall --- --- dependall-racoonctl --- --- str2val.o --- --- dependall-npf --- --- npfd.d --- --- dependall-racoonctl --- # compile racoonctl/str2val.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/str2val.c -o str2val.o --- dependall-npf --- # create npfd/npfd.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npfd.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd.c && mv -f npfd.d.tmp npfd.d --- dependall-rtadvd --- --- expandm.o --- --- rtadvd_rumpops.o --- # compile rtadvd/rtadvd_rumpops.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET6 -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libwrap -DRUMP_ACTION -D_KERNTYPES -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/rtadvd/rtadvd_rumpops.c -o rtadvd_rumpops.o --- dependall-cnwctl --- --- .gdbinit --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-sys --- touch ioconf.c ioconf.h locators.h --- dependall-usr.sbin --- --- cnwctl.html8 --- # format cnwctl/cnwctl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/cnwctl/cnwctl.8 > cnwctl.html8.tmp && mv -f cnwctl.html8.tmp cnwctl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/cnwctl/cnwctl.8 > cnwctl.html8.tmp && mv -f cnwctl.html8.tmp cnwctl.html8; fi --- dependall-sys --- --- if_ppp.d --- # create if_ppp/if_ppp.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_ppp.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -DPPP_FILTER -DPPP_DEFLATE -DPPP_BSDCOMP -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/if_ppp.c && mv -f if_ppp.d.tmp if_ppp.d --- dependall-usr.sbin --- --- cnwctl.o --- --- dependall-sys --- --- dependall-if_agr --- --- dependall-usr.sbin --- # compile cnwctl/cnwctl.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/cnwctl/cnwctl.c -o cnwctl.o --- dependall-sys --- --- if_agr.o --- # compile if_agr/if_agr.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_agr -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/agr/if_agr.c -o if_agr.o --- dependall-external --- --- dependall-bsd --- --- text_test --- --- dependall-usr.sbin --- --- dependall-npf --- --- npfd_log.d --- --- dependall-external --- # link tools/text_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o text_test text_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-usr.sbin --- # create npfd/npfd_log.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npfd_log.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd_log.c && mv -f npfd_log.d.tmp npfd_log.d --- dependall-racoonctl --- --- racoonctl.o --- --- dependall-iwictl --- dependall ===> usr.sbin/iwictl --- dependall-racoon --- --- misc.d --- # create racoon/misc.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f misc.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/misc.c && mv -f misc.d.tmp misc.d --- dependall-iwictl --- --- iwictl.d --- --- dependall-rtadvd --- --- dependall-iwictl --- # create iwictl/iwictl.d --- dependall-rtadvd --- --- rtadvd --- --- dependall-iwictl --- CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f iwictl.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/iwictl/iwictl.c && mv -f iwictl.d.tmp iwictl.d --- dependall-plainrsa-gen --- prsa_tok.c:1766:16: warning: 'input' defined but not used [-Wunused-function] 1766 | #else | ^ prsa_tok.c:1723:17: warning: 'yyunput' defined but not used [-Wunused-function] 1723 | | ^ --- dependall-rtadvd --- # link rtadvd/rtadvd /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o rtadvd rtadvd.o advcap.o if.o config.o timer.o dump.o expandm.o rtadvd_hostops.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lutil --- dependall-sys --- --- dependall-if_ppp --- --- ioconf.d --- # create if_ppp/ioconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ioconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -DPPP_FILTER -DPPP_DEFLATE -DPPP_BSDCOMP -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR ioconf.c && mv -f ioconf.d.tmp ioconf.d --- dependall-usr.sbin --- --- dependall-racoonctl --- --- str2val.o --- --- kmpstat.o --- # compile racoonctl/kmpstat.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/kmpstat.c -o kmpstat.o --- dependall-npf --- --- .depend --- # create npfd/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend npfd.d npfd_log.d --- dependall --- --- dependall-rtadvd --- --- rump.rtadvd --- # link rtadvd/rump.rtadvd /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o rump.rtadvd rtadvd.o advcap.o if.o config.o timer.o dump.o expandm.o rtadvd_rumpops.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lutil -lrumpres -lrumpclient --- dependall-racoon --- --- nattraversal.d --- # create racoon/nattraversal.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f nattraversal.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/nattraversal.c && mv -f nattraversal.d.tmp nattraversal.d --- dependall-iwictl --- --- .depend --- # create iwictl/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend iwictl.d --- dependall --- --- dependall-npf --- --- dependall-npfctl --- --- npf_cmd.o --- --- npf_var.o --- --- npf_cmd.o --- # compile npfctl/npf_cmd.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_cmd.c -o npf_cmd.o --- dependall-npfd --- --- .gdbinit --- --- dependall-npfctl --- --- npf_var.o --- # compile npfctl/npf_var.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_var.c -o npf_var.o --- dependall-npfd --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- npfd.html8 --- --- dependall-sys --- --- ppp_tty.d --- --- dependall-usr.sbin --- # format npfd/npfd.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd.8 > npfd.html8.tmp && mv -f npfd.html8.tmp npfd.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd.8 > npfd.html8.tmp && mv -f npfd.html8.tmp npfd.html8; fi --- dependall-sys --- # create if_ppp/ppp_tty.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ppp_tty.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -DPPP_FILTER -DPPP_DEFLATE -DPPP_BSDCOMP -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/ppp_tty.c && mv -f ppp_tty.d.tmp ppp_tty.d --- dependall-usr.sbin --- --- dependall-iwictl --- --- .gdbinit --- --- dependall-npf --- --- npfd.o --- --- dependall-iwictl --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-npf --- # compile npfd/npfd.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd.c -o npfd.o --- dependall-iwictl --- --- iwictl.html8 --- # format iwictl/iwictl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/iwictl/iwictl.8 > iwictl.html8.tmp && mv -f iwictl.html8.tmp iwictl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/iwictl/iwictl.8 > iwictl.html8.tmp && mv -f iwictl.html8.tmp iwictl.html8; fi --- iwictl.o --- # compile iwictl/iwictl.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/iwictl/iwictl.c -o iwictl.o --- dependall-external --- --- parser_test --- # link tools/parser_test /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-c++ --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -o parser_test parser_test.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib /tmp/build/2026.03.19.06.16.17-alpha/obj/external/bsd/atf/lib/tools/libtools.a -latf-c++ -latf-c --- dependall-gpl3 --- --- state-purge.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x state-purge.o --- dependall-usr.sbin --- --- dependall-racoonctl --- --- vmbuf.o --- # compile racoonctl/vmbuf.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/vmbuf.c -o vmbuf.o --- dependall-plainrsa-gen --- --- sockmisc.o --- --- dependall-sys --- --- .depend --- --- dependall-usr.sbin --- --- dependall-npf --- --- npfd_log.o --- # compile npfd/npfd_log.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfd/npfd_log.c -o npfd_log.o --- dependall-sys --- # create if_ppp/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_ppp.d ioconf.d ppp_tty.d --- dependall --- --- dependall-usr.sbin --- --- dependall-cnwctl --- --- cnwctl --- # link cnwctl/cnwctl /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o cnwctl cnwctl.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib --- dependall-racoon --- --- oakley.d --- # create racoon/oakley.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f oakley.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/oakley.c && mv -f oakley.d.tmp oakley.d --- dependall-iwictl --- --- dependall-wiconfig --- --- dependall-iwictl --- --- iwictl --- --- dependall-wiconfig --- dependall ===> usr.sbin/wiconfig --- dependall-iwictl --- # link iwictl/iwictl /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o iwictl iwictl.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib --- dependall-racoonctl --- --- kmpstat.o --- --- dependall-racoon --- --- pfkey.d --- # create racoon/pfkey.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f pfkey.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/pfkey.c && mv -f pfkey.d.tmp pfkey.d --- dependall-wiconfig --- --- wiconfig.d --- # create wiconfig/wiconfig.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f wiconfig.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wiconfig/wiconfig.c && mv -f wiconfig.d.tmp wiconfig.d --- dependall-sys --- --- ppp_tty.o --- # compile if_ppp/ppp_tty.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DINET -DINET6 -DPPP_FILTER -DPPP_DEFLATE -DPPP_BSDCOMP -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/ppp_tty.c -o ppp_tty.o --- dependall-usr.sbin --- --- dependall-pf --- --- dependall-npf --- --- dependall-npftest --- dependall ===> usr.sbin/npf/npftest --- dependall-pf --- --- authpf --- # link authpf/authpf /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o authpf authpf.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lutil --- dependall-racoonctl --- --- vmbuf.o --- --- sockmisc.o --- --- dependall-npf --- --- dependall-npfd --- --- npfd.o --- --- dependall-wlanctl --- --- dependall-racoonctl --- # compile racoonctl/sockmisc.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/sockmisc.c -o sockmisc.o --- dependall-wlanctl --- dependall ===> usr.sbin/wlanctl --- dependall-external --- --- dependall-bsd --- --- dependall --- --- dependall-usr.sbin --- --- dependall-pf --- --- dependall-ftp-proxy --- dependall ===> usr.sbin/pf/ftp-proxy --- dependall-npf --- --- dependall-npftest --- --- dependall-libnpftest --- dependall ===> usr.sbin/npf/npftest/libnpftest --- dependall-external --- --- Atffile --- # create atf/Atffile --- dependall-usr.sbin --- --- dependall-racoon --- --- plog.d --- --- dependall-wlanctl --- --- wlanctl.d --- --- dependall-racoon --- # create racoon/plog.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f plog.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/plog.c && mv -f plog.d.tmp plog.d --- dependall-external --- --- dependall --- --- dependall-usr.sbin --- --- dependall-wlanctl --- # create wlanctl/wlanctl.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f wlanctl.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wlanctl/wlanctl.c && mv -f wlanctl.d.tmp wlanctl.d --- dependall-pf --- --- filter.d --- # create ftp-proxy/filter.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f filter.d.tmp -- -std=gnu11 -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DWITH_IPF -D_OPENBSD_SOURCE -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/filter.c && mv -f filter.d.tmp filter.d --- dependall-wiconfig --- --- .depend --- --- dependall-external --- --- dependall --- --- dependall-usr.sbin --- # create wiconfig/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend wiconfig.d --- dependall --- --- dependall-npf --- --- npf_bpf_test.d --- --- dependall-external --- --- dependall --- --- dependall-usr.sbin --- # create libnpftest/npf_bpf_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_bpf_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_bpf_test.c && mv -f npf_bpf_test.d.tmp npf_bpf_test.d --- dependall-pf --- --- ftp-proxy.d --- --- dependall-racoon --- --- policy.d --- # create racoon/policy.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f policy.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/policy.c && mv -f policy.d.tmp policy.d --- dependall-pf --- # create ftp-proxy/ftp-proxy.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ftp-proxy.d.tmp -- -std=gnu11 -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DWITH_IPF -D_OPENBSD_SOURCE -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c && mv -f ftp-proxy.d.tmp ftp-proxy.d --- dependall-wiconfig --- --- .gdbinit --- --- dependall-racoon --- --- privsep.d --- --- dependall-wiconfig --- rm -f .gdbinit --- dependall-racoon --- # create racoon/privsep.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f privsep.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/privsep.c && mv -f privsep.d.tmp privsep.d --- dependall-wiconfig --- echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- wiconfig.html8 --- --- wiconfig.o --- --- wiconfig.html8 --- # format wiconfig/wiconfig.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wiconfig/wiconfig.8 > wiconfig.html8.tmp && mv -f wiconfig.html8.tmp wiconfig.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wiconfig/wiconfig.8 > wiconfig.html8.tmp && mv -f wiconfig.html8.tmp wiconfig.html8; fi --- wiconfig.o --- # compile wiconfig/wiconfig.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c -Wno-stringop-truncation /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wiconfig/wiconfig.c -o wiconfig.o --- dependall-npf --- --- dependall-npfctl --- --- npf_data.o --- # compile npfctl/npf_data.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_data.c -o npf_data.o --- npf_build.o --- --- dependall-wlanctl --- --- .depend --- --- dependall-npf --- # compile npfctl/npf_build.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_build.c -o npf_build.o --- dependall-wlanctl --- # create wlanctl/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend wlanctl.d --- dependall --- --- dependall-npf --- --- dependall-npfd --- --- npfd_log.o --- --- npfd --- # link npfd/npfd /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o npfd npfd.o npfd_log.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lnpf -lpcap -lutil --- dependall-pf --- --- ipf.d --- # create ftp-proxy/ipf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ipf.d.tmp -- -std=gnu11 -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DWITH_IPF -D_OPENBSD_SOURCE -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/ipf.c && mv -f ipf.d.tmp ipf.d --- dependall-wlanctl --- --- .gdbinit --- --- dependall-racoon --- --- proposal.d --- --- dependall-wlanctl --- rm -f .gdbinit --- dependall-racoon --- # create racoon/proposal.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f proposal.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/proposal.c && mv -f proposal.d.tmp proposal.d --- dependall-wlanctl --- echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-npf --- --- dependall-npftest --- --- npf_gc_test.d --- # create libnpftest/npf_gc_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_gc_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_gc_test.c && mv -f npf_gc_test.d.tmp npf_gc_test.d --- dependall-wlanctl --- --- wlanctl.html8 --- # format wlanctl/wlanctl.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wlanctl/wlanctl.8 > wlanctl.html8.tmp && mv -f wlanctl.html8.tmp wlanctl.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wlanctl/wlanctl.8 > wlanctl.html8.tmp && mv -f wlanctl.html8.tmp wlanctl.html8; fi --- dependall-npf --- --- dependall-npfctl --- --- npf_cmd.o --- --- npf_bpf_comp.o --- --- dependall-sys --- --- dependall-if_pppoe --- --- dependall-usr.sbin --- # compile npfctl/npf_bpf_comp.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl/npf_bpf_comp.c -o npf_bpf_comp.o --- dependall-wlanctl --- --- wlanctl.o --- --- dependall-sys --- dependall ===> sys/modules/if_pppoe --- dependall-usr.sbin --- # compile wlanctl/wlanctl.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -mieee -D_KERNTYPES --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -c /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wlanctl/wlanctl.c -o wlanctl.o --- dependall-racoon --- --- prsa_par.d --- --- dependall-pf --- --- .depend --- --- dependall-racoon --- # create racoon/prsa_par.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f prsa_par.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -Wno-error=deprecated-declarations prsa_par.c && mv -f prsa_par.d.tmp prsa_par.d --- dependall-pf --- # create ftp-proxy/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .ln\ .d -d -f .depend filter.d ftp-proxy.d ipf.d --- dependall --- --- dependall-sys --- --- ioconf.c --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbconfig -b /tmp/build/2026.03.19.06.16.17-alpha/obj/sys/modules/if_pppoe -s /tmp/build/2026.03.19.06.16.17-alpha/src/sys /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_pppoe/pppoe.ioconf --- dependall-usr.sbin --- --- dependall-racoonctl --- --- misc.o --- # compile racoonctl/misc.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -mieee --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -UIPSEC_DEBUG -DHAVE_CONFIG_H -DNOUSE_PRIVSEP -DADMINPORTDIR=\"/var/run\" -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/misc.c -o misc.o --- dependall-pf --- --- .gdbinit --- --- dependall-npf --- --- dependall-npftest --- --- npf_l2rule_test.d --- --- dependall-pf --- rm -f .gdbinit echo "set solib-absolute-prefix /tmp/build/2026.03.19.06.16.17-alpha/destdir" > .gdbinit --- dependall-npf --- # create libnpftest/npf_l2rule_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_l2rule_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_l2rule_test.c && mv -f npf_l2rule_test.d.tmp npf_l2rule_test.d --- dependall-pf --- --- ftp-proxy.html8 --- # format ftp-proxy/ftp-proxy.html8 if test "" != "yes"; then /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmandoc -Thtml -Oman=../html%S/%N.html,style=../style.css /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/ftp-proxy.8 > ftp-proxy.html8.tmp && mv -f ftp-proxy.html8.tmp ftp-proxy.html8; else GROFF_ENCODING= GROFF_BIN_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/lib/groff GROFF_FONT_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-font:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/font GROFF_TMAC_PATH=/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/site-tmac:/tmp/build/2026.03.19.06.16.17-alpha/tools/share/groff/tmac /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbgroff -Tlatin1 -mdoc2html /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/ftp-proxy.8 > ftp-proxy.html8.tmp && mv -f ftp-proxy.html8.tmp ftp-proxy.html8; fi --- ftp-proxy.o --- # compile ftp-proxy/ftp-proxy.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -mieee -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DWITH_IPF -D_OPENBSD_SOURCE -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/ftp-proxy.c -o ftp-proxy.o --- dependall-plainrsa-gen --- --- prsa_tok.o --- --- dependall-sys --- touch ioconf.c ioconf.h locators.h --- dependall-usr.sbin --- --- plainrsa-gen --- # link plainrsa-gen/plainrsa-gen /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o plainrsa-gen plainrsa-gen.o crypto_openssl.o genlist.o logger.o misc.o plog.o prsa_par.o prsa_tok.o rsalist.o sockmisc.o vmbuf.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lcrypto -lipsec --- dependall-sys --- --- if_pppoe.d --- # create if_pppoe/if_pppoe.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f if_pppoe.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DPPPOE_SERVER -DPPPOE_TERM_UNKNOWN_SESSIONS -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_pppoe -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/if_pppoe.c && mv -f if_pppoe.d.tmp if_pppoe.d --- dependall-usr.sbin --- --- dependall-racoon --- --- prsa_tok.d --- --- dependall-sys --- --- dependall-if_agr --- --- if_agr.kmod --- --- dependall-usr.sbin --- # create racoon/prsa_tok.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f prsa_tok.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES -Wno-error=unused-function prsa_tok.c && mv -f prsa_tok.d.tmp prsa_tok.d --- dependall-sys --- # link if_agr/if_agr.kmod /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -nostdlib -r -Wl,-T,/tmp/build/2026.03.19.06.16.17-alpha/src/sys/../sys/modules/xldscripts/kmodule,-d -Wl,-Map=if_agr.kmod.map -o if_agr.kmod ieee8023_tlv.o ieee8023ad_lacp.o ieee8023ad_lacp_debug.o ieee8023ad_lacp_select.o ieee8023ad_lacp_sm_mux.o ieee8023ad_lacp_sm_ptx.o ieee8023ad_lacp_sm_rx.o ieee8023ad_lacp_sm_tx.o ieee8023ad_lacp_timer.o ieee8023ad_marker.o if_agr.o if_agrether.o if_agrether_hash.o if_agrmonitor.o if_agrsoftc.o if_agrsubr.o if_agrtimer.o --- dependall-usr.sbin --- --- dependall-npf --- --- npf_mbuf_subr.d --- # create libnpftest/npf_mbuf_subr.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_mbuf_subr.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_mbuf_subr.c && mv -f npf_mbuf_subr.d.tmp npf_mbuf_subr.d --- npf_nat_test.d --- # create libnpftest/npf_nat_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_nat_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_nat_test.c && mv -f npf_nat_test.d.tmp npf_nat_test.d --- dependall-racoonctl --- --- dependall-sys --- --- dependall-if_pppoe --- --- ioconf.d --- --- dependall-usr.sbin --- --- dependall-npf --- --- npf_nbuf_test.d --- --- dependall-sys --- # create if_pppoe/ioconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f ioconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DPPPOE_SERVER -DPPPOE_TERM_UNKNOWN_SESSIONS -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_pppoe -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR ioconf.c && mv -f ioconf.d.tmp ioconf.d --- dependall-usr.sbin --- # create libnpftest/npf_nbuf_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_nbuf_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_nbuf_test.c && mv -f npf_nbuf_test.d.tmp npf_nbuf_test.d --- dependall-racoon --- --- remoteconf.d --- # create racoon/remoteconf.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f remoteconf.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DIPSEC_DEBUG -DENABLE_WILDCARD_MATCH -DADMINPORTDIR=\"/var/run\" -DSYSCONFDIR=\"/etc/racoon\" -DHAVE_LIBRADIUS -DHAVE_LIBPAM -DHAVE_GSSAPI -DHAVE_OPENSSL_IDEA_H -DINET6 -DHAVE_LIBLDAP -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/missing -I/tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/libipsec -I/tmp/build/2026.03.19.06.16.17-alpha/src/lib/libipsec -I. -DHAVE_CONFIG_H -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/crypto/dist/ipsec-tools/src/racoon/remoteconf.c && mv -f remoteconf.d.tmp remoteconf.d --- dependall-pf --- --- dependall-pfctl --- dependall ===> usr.sbin/pf/pfctl --- dependall-npf --- --- npf_perf_test.d --- --- dependall-sys --- --- .depend --- --- dependall-usr.sbin --- # create libnpftest/npf_perf_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_perf_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_perf_test.c && mv -f npf_perf_test.d.tmp npf_perf_test.d --- dependall-sys --- # create if_pppoe/.depend rm -f .depend CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -s .o\ .d -d -f .depend if_pppoe.d ioconf.d --- dependall --- --- dependall-usr.sbin --- --- dependall-wlanctl --- --- wlanctl --- # link wlanctl/wlanctl /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o wlanctl wlanctl.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib --- dependall-pf --- --- parse.c --- # yacc pfctl/parse.c /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbyacc -o parse.c /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pfctl/parse.y --- dependall-external --- --- dependall-gpl3 --- --- insn-automata.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x insn-automata.o --- dependall-usr.sbin --- --- dependall-pflogd --- dependall ===> usr.sbin/pf/pflogd --- dependall-npf --- --- npf_rid_test.d --- # create libnpftest/npf_rid_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_rid_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_rid_test.c && mv -f npf_rid_test.d.tmp npf_rid_test.d --- npf_rule_test.d --- --- dependall-pf --- --- pflogd.d --- --- dependall-npf --- # create libnpftest/npf_rule_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_rule_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_rule_test.c && mv -f npf_rule_test.d.tmp npf_rule_test.d --- dependall-pf --- # create pflogd/pflogd.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f pflogd.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pflogd -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/bsd/libpcap/dist -DPCAP_DONT_INCLUDE_PCAP_BPF_H -D_OPENBSD_SOURCE -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pflogd/pflogd.c && mv -f pflogd.d.tmp pflogd.d --- dependall-npf --- --- npf_state_test.d --- # create libnpftest/npf_state_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_state_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_state_test.c && mv -f npf_state_test.d.tmp npf_state_test.d --- dependall-racoonctl --- --- sockmisc.o --- --- racoonctl --- # link racoonctl/racoonctl /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -Wl,--warn-shared-textrel -o racoonctl racoonctl.o str2val.o kmpstat.o vmbuf.o sockmisc.o misc.o -Wl,-rpath-link,/tmp/build/2026.03.19.06.16.17-alpha/destdir/lib -L=/lib -lipsec --- dependall-pf --- --- dependall-pfctl --- --- parse.d --- # create pfctl/parse.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f parse.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pfctl -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/dist/pf -D_OPENBSD_SOURCE -D_KERNTYPES parse.c && mv -f parse.d.tmp parse.d --- dependall-ftp-proxy --- --- filter.o --- # compile ftp-proxy/filter.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Werror -Wno-address-of-packed-member -mieee -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DWITH_IPF -D_OPENBSD_SOURCE -D_KERNTYPES -c /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/usr.sbin/ftp-proxy/filter.c -o filter.o --- dependall-sys --- --- if_pppoe.o --- # compile if_pppoe/if_pppoe.o /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc -O2 -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Werror -Wno-pointer-sign -Wno-attributes -Wno-type-limits -Wno-address-of-packed-member -mieee -ffreestanding -fno-strict-aliasing -mno-fp-regs -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -DPPPOE_SERVER -DPPPOE_TERM_UNKNOWN_SESSIONS -I/tmp/build/2026.03.19.06.16.17-alpha/src/common/include -DDIAGNOSTIC -nostdinc -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_pppoe -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/arch -isystem /tmp/build/2026.03.19.06.16.17-alpha/src/sys/../common/include -D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR -c /tmp/build/2026.03.19.06.16.17-alpha/src/sys/net/if_pppoe.c -o if_pppoe.o --- dependall-usr.sbin --- --- dependall-pflogd --- In file included from /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pflogd/pflogd.c:51: /tmp/build/2026.03.19.06.16.17-alpha/src/external/bsd/libpcap/dist/pcap-int.h:89:4: error: #error Unknown time_t size 89 | #error Unknown time_t size | ^~~~~ nbmkdep: compile failed. --- dependall-npf --- --- npf_table_test.d --- --- dependall-pf --- *** Failed target: pflogd.d *** In directory: /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/pflogd *** Failed commands: ${_MKTARGET_CREATE} => @echo '# ' " create " pflogd/pflogd.d ${MKDEP} -f ${.TARGET}.tmp ${_MKDEP_FILEFLAGS} -- ${MKDEPFLAGS} ${CFLAGS:M-std=*} ${CFLAGS:C/-([IDUW])[ ]*/-\1/Wg:M-[IDUW]*} ${CPPFLAGS:N-Wp,-iremap,*} ${COPTS.${.IMPSRC:T}} ${CPUFLAGS.${.IMPSRC:T}} ${CPPFLAGS.${.IMPSRC:T}} ${.IMPSRC} && ${MV} ${.TARGET}.tmp ${.TARGET} => CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f pflogd.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-address-of-packed-member --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -I/tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pflogd -I/tmp/build/2026.03.19.06.16.17-alpha/src/external/bsd/libpcap/dist -DPCAP_DONT_INCLUDE_PCAP_BPF_H -D_OPENBSD_SOURCE -D_KERNTYPES /tmp/build/2026.03.19.06.16.17-alpha/src/dist/pf/sbin/pflogd/pflogd.c && mv -f pflogd.d.tmp pflogd.d *** [pflogd.d] Error code 1 nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/pflogd nbmake[7]: 1 error nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/pflogd --- dependall-npf --- # create libnpftest/npf_table_test.d CC=/tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-gcc /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/nbmkdep -f npf_table_test.d.tmp -- -std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-sign-compare -Wsystem-headers -Wno-traditional -Wa,--fatal-warnings -Wreturn-type -Wswitch -Wshadow -Wcast-qual -Wwrite-strings -Wextra -Wno-unused-parameter -Wno-sign-compare -Wold-style-definition -Wsign-compare -Wformat=2 -Wno-format-zero-length -Werror -Wno-format-zero-length -Wno-pointer-sign -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -D_NPF_TESTING -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/net/npf -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -I/tmp/build/2026.03.19.06.16.17-alpha/src/sys/external/bsd/libnv/dist --sysroot=/tmp/build/2026.03.19.06.16.17-alpha/destdir -D_RUMPKERNEL -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/librump/rumpkern -DCOMPAT_50 -DCOMPAT_60 -DCOMPAT_70 -DCOMPAT_80 -DCOMPAT_90 -DCOMPAT_100 -DCOMPAT_110 -nostdinc -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest -I. -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../../common/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/../arch -I/tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/.. -DDIAGNOSTIC -DKTRACE -imacros /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/../../../../sys/rump/include/opt/opt_rumpkernel.h /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest/libnpftest/npf_table_test.c && mv -f npf_table_test.d.tmp npf_table_test.d --- dependall-pf --- nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf --- dependall-racoon --- nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin --- dependall-pf --- --- dependall-pfctl --- nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf --- dependall-npf --- --- dependall-npfctl --- --- npf_data.o --- --- dependall-npftest --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npftest nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf --- dependall-sys --- --- dependall-if_ppp --- --- dependall-usr.sbin --- --- dependall-wiconfig --- --- dependall-sys --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_ppp --- dependall-usr.sbin --- nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/wiconfig --- dependall-sys --- nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules --- dependall-usr.sbin --- nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin --- dependall-npf --- --- dependall-npfctl --- --- npf_bpf_comp.o --- --- dependall-external --- --- dependall-gdb --- --- annotate.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x annotate.o --- dependall-usr.sbin --- --- npf_build.o --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf/npfctl nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/npf nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin --- dependall-pf --- --- dependall-ftp-proxy --- --- dependall-external --- --- alpha-tdep.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x alpha-tdep.o --- dependall-sys --- --- dependall-if_lagg --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_lagg nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules --- dependall-usr.sbin --- --- ftp-proxy.o --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf/ftp-proxy nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin/pf nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/usr.sbin nbmake[4]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src --- dependall-external --- --- aranges.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x aranges.o nbmake[9]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gdb/lib/libgdb nbmake[8]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gdb/lib nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gdb nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3 --- dependall-gcc.old --- --- supergraph.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x supergraph.o --- dependall-sys --- --- dependall-if_pppoe --- nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules/if_pppoe nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys/modules nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/sys nbmake[4]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src --- dependall-external --- --- store.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x store.o --- region-model-manager.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x region-model-manager.o --- generic-match.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x generic-match.o --- gimple-match.o --- /tmp/build/2026.03.19.06.16.17-alpha/tools/bin/alpha--netbsd-objcopy -x gimple-match.o nbmake[8]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old/usr.bin nbmake[7]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3/gcc.old nbmake[6]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external/gpl3 nbmake[5]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src/external nbmake[4]: stopped making "dependall" in /tmp/build/2026.03.19.06.16.17-alpha/src nbmake[3]: stopped making "do-build" in /tmp/build/2026.03.19.06.16.17-alpha/src nbmake[2]: stopped making "build" in /tmp/build/2026.03.19.06.16.17-alpha/src nbmake[1]: stopped making "distribution" in /tmp/build/2026.03.19.06.16.17-alpha/src nbmake: stopped making "release" in /tmp/build/2026.03.19.06.16.17-alpha/src ERROR: Failed to make release *** BUILD ABORTED *** 902.31 real 9236.25 user 1819.35 sys