=> Bootstrap dependency digest>=20211023: found digest-20220214
===> Building for unworkable-0.53nb4
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c announce.c
announce.c:292:14: warning: passing 'u_int8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        if (strncmp(c, HTTP_1_0, strlen(HTTP_1_0)) != 0 && strncmp(c, HTTP_1_1, strlen(HTTP_1_1))) {
                    ^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/string.h:84:26: note: passing argument to parameter '__s1' here
int      strncmp(const char *__s1, const char *__s2, size_t __n);
                             ^
announce.c:292:61: warning: passing 'u_int8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        if (strncmp(c, HTTP_1_0, strlen(HTTP_1_0)) != 0 && strncmp(c, HTTP_1_1, strlen(HTTP_1_1))) {
                                                                   ^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/string.h:84:26: note: passing argument to parameter '__s1' here
int      strncmp(const char *__s1, const char *__s2, size_t __n);
                             ^
announce.c:297:14: warning: passing 'u_int8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        if (strncmp(c, HTTP_OK, strlen(HTTP_OK)) != 0) {
                    ^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/string.h:84:26: note: passing argument to parameter '__s1' here
int      strncmp(const char *__s1, const char *__s2, size_t __n);
                             ^
announce.c:302:13: warning: passing 'u_int8_t *' (aka 'unsigned char *') to parameter of type 'const char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        c = strstr(c, HTTP_END);
                   ^
/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/string.h:89:26: note: passing argument to parameter '__big' here
char    *strstr(const char *__big, const char *__little);
                            ^
announce.c:302:4: warning: assigning to 'u_int8_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        c = strstr(c, HTTP_END);
          ^ ~~~~~~~~~~~~~~~~~~~
5 warnings generated.
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c bencode.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c buf.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c ctl_server.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c network.c
network.c:81:23: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
network_peer_id_create()
                      ^
                       void
network.c:631:49: warning: expression result unused [-Wunused-value]
                                trace("REQUEST offset out of bounds (%u)"), off;
                                                                            ^~~
network.c:1282:18: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
network_crypto_dh()
                 ^
                  void
network.c:1287:13: warning: 'DH_new' is deprecated [-Wdeprecated-declarations]
        if ((dhp = DH_new()) == NULL)
                   ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/dh.h:210:1: note: 'DH_new' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:194:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
network.c:1294:6: warning: 'DH_set0_pqg' is deprecated [-Wdeprecated-declarations]
        if (DH_set0_pqg(dhp, p, NULL, g) != 1)
            ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/dh.h:266:1: note: 'DH_set0_pqg' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int DH_set0_pqg(DH *dh, BIGNUM *p, BIGNUM *q, BIGNUM *g);
^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:194:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
network.c:1300:6: warning: 'DH_generate_key' is deprecated [-Wdeprecated-declarations]
        if (DH_generate_key(dhp) == 0)
            ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/dh.h:234:1: note: 'DH_generate_key' has been explicitly marked deprecated here
OSSL_DEPRECATEDIN_3_0 int DH_generate_key(DH *dh);
^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:194:49: note: expanded from macro 'OSSL_DEPRECATEDIN_3_0'
#   define OSSL_DEPRECATEDIN_3_0                OSSL_DEPRECATED(3.0)
                                                ^
/Users/pbulk/build/net/unworkable/work/.buildlink/include/openssl/macros.h:62:52: note: expanded from macro 'OSSL_DEPRECATED'
#     define OSSL_DEPRECATED(since) __attribute__((deprecated))
                                                   ^
network.c:1427:13: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
network_init()
            ^
             void
7 warnings generated.
yacc  parse.y
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c -o parse.o y.tab.c
rm -f y.tab.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c progressmeter.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c scheduler.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c torrent.c
torrent.c:77:19: warning: passing 'char *' to parameter of type 'const u_int8_t *' (aka 'const unsigned char *') converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        SHA1Update(&sha, p, (infoend - (p - buf)));
                         ^
openbsd-compat/sha1.h:25:45: note: passing argument to parameter here
void SHA1Update(SHA1_CTX *, const u_int8_t *, size_t);
                                            ^
torrent.c:767:5: warning: assigning to 'u_int8_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                s = tp->body.multifile.pieces
                  ^ ~~~~~~~~~~~~~~~~~~~~~~~~~
torrent.c:770:5: warning: assigning to 'u_int8_t *' (aka 'unsigned char *') from 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                s = tp->body.singlefile.pieces
                  ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~
3 warnings generated.
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c trace.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c util.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c xmalloc.c
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c sha1.c
sha1.c:134:46: warning: cast from 'const unsigned char *' to 'unsigned char *' drops const qualifier [-Wcast-qual]
                        SHA1Transform(context->state, (u_int8_t *)&data[i]);
                                                                  ^
1 warning generated.
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c strtonum.c
strtonum.c:30:9: warning: 'LLONG_MIN' macro redefined [-Wmacro-redefined]
#define LLONG_MIN     (-0x7fffffffffffffffLL-1)
        ^
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/limits.h:104:9: note: previous definition is here
#define LLONG_MIN  (-__LONG_LONG_MAX__-1LL)
        ^
strtonum.c:31:9: warning: 'LLONG_MAX' macro redefined [-Wmacro-redefined]
#define LLONG_MAX     0x7fffffffffffffffLL
        ^
/Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include/limits.h:103:9: note: previous definition is here
#define LLONG_MAX  __LONG_LONG_MAX__
        ^
2 warnings generated.
clang -pipe -Os -I/opt/pkg/include -Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare -g -ggdb -Iopenbsd-compat -I/opt/pkg/include -c main.c
nroff -Tascii -mandoc unworkable.1 > unworkable.cat1
mksh: <stdin>[3]: nroff: inaccessible or not found
*** [unworkable.cat1] Error code 127

bmake: stopped in /Users/pbulk/build/net/unworkable/work/unworkable
1 error

bmake: stopped in /Users/pbulk/build/net/unworkable/work/unworkable
*** Error code 2

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

Stop.
bmake: stopped in /Volumes/data/jenkins/workspace/pkgsrc-macos-trunk-x86_64/net/unworkable