=> Bootstrap dependency digest>=20010302: found digest-20160304
===> Skipping vulnerability checks.
WARNING: No /var/db/pkg/pkg-vulnerabilities file found.
WARNING: To fix run: `/usr/sbin/pkg_admin -K /var/db/pkg fetch-pkg-vulnerabilities'.
===> Building for sign-1.0.7nb1
/usr/pkg/bin/gmake -C src
gmake[1]: Entering directory '/data/scratch/security/sign/work/sign-1.0.7/src'
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o buf.o buf.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o die.o die.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o msg.o msg.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o digest.o digest.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o uue.o uue.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o pki.o pki.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o str.o str.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o system-nix.o system-nix.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o system-nix-readpass.o system-nix-readpass.c
clang -O2 -I/usr/include -Wall -DNDEBUG -g -I/usr/include  -c -o util.o util.c
system-nix-readpass.c:152:8: warning: array subscript is of type 'char' [-Wchar-subscripts]
                        if (isalpha(ch)) {
                            ^~~~~~~~~~~
/usr/include/sys/ctype_inline.h:49:44: note: expanded from macro 'isalpha'
#define isalpha(c)      ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_A))
                                                ^~~~
system-nix-readpass.c:154:11: warning: array subscript is of type 'char' [-Wchar-subscripts]
                                        ch = tolower(ch);
                                             ^~~~~~~~~~~
/usr/include/sys/ctype_inline.h:59:46: note: expanded from macro 'tolower'
#define tolower(c)      ((int)((_tolower_tab_ + 1)[(c)]))
                                                  ^~~~
system-nix-readpass.c:156:11: warning: array subscript is of type 'char' [-Wchar-subscripts]
                                        ch = toupper(ch);
                                             ^~~~~~~~~~~
/usr/include/sys/ctype_inline.h:60:46: note: expanded from macro 'toupper'
#define toupper(c)      ((int)((_toupper_tab_ + 1)[(c)]))
                                                  ^~~~
pki.c:110:12: error: incomplete definition of type 'struct rsa_st'
        if (! (rsa->n = BN_new()))
               ~~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:112:12: error: incomplete definition of type 'struct rsa_st'
        if (! (rsa->e = BN_new()))
               ~~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:117:33: error: incomplete definition of type 'struct rsa_st'
            ! buf_parse_bignum(&kb, rsa->e) ||
                                    ~~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:118:33: error: incomplete definition of type 'struct rsa_st'
            ! buf_parse_bignum(&kb, rsa->n) ||
                                    ~~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:148:25: warning: array subscript is of type 'char' [-Wchar-subscripts]
        while (buf_size(&b) && isspace(*(char*)b.p))
                               ^~~~~~~~~~~~~~~~~~~~
/usr/include/sys/ctype_inline.h:56:44: note: expanded from macro 'isspace'
#define isspace(c)      ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_S))
                                                ^~~~
pki.c:197:30: error: incomplete definition of type 'struct rsa_st'
               buf_store_bignum(b, k->e) &&
                                   ~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:198:30: error: incomplete definition of type 'struct rsa_st'
               buf_store_bignum(b, k->n);
                                   ~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:227:20: error: incomplete definition of type 'struct rsa_st'
        return ! BN_cmp(k1->e, k2->e) &&
                        ~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:227:27: error: incomplete definition of type 'struct rsa_st'
        return ! BN_cmp(k1->e, k2->e) &&
                               ~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:228:20: error: incomplete definition of type 'struct rsa_st'
               ! BN_cmp(k1->n, k2->n);
                        ~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:228:27: error: incomplete definition of type 'struct rsa_st'
               ! BN_cmp(k1->n, k2->n);
                               ~~^
/usr/include/openssl/ossl_typ.h:110:16: note: forward declaration of 'struct rsa_st'
typedef struct rsa_st RSA;
               ^
pki.c:316:22: error: incomplete definition of type 'struct bio_st'
                mem = (BUF_MEM*)bio->ptr;
                                ~~~^
/usr/include/openssl/ossl_typ.h:79:16: note: forward declaration of 'struct bio_st'
typedef struct bio_st BIO;
               ^
pki.c:321:21: error: incomplete definition of type 'struct evp_pkey_st'
        if (EVP_PKEY_type(k->type) != EVP_PKEY_RSA)
                          ~^
/usr/include/openssl/ossl_typ.h:93:16: note: forward declaration of 'struct evp_pkey_st'
typedef struct evp_pkey_st EVP_PKEY;
               ^
1 warning and 12 errors generated.
<builtin>: recipe for target 'pki.o' failed
gmake[1]: *** [pki.o] Error 1
gmake[1]: *** Waiting for unfinished jobs....
3 warnings generated.
gmake[1]: Leaving directory '/data/scratch/security/sign/work/sign-1.0.7/src'
Makefile:4: recipe for target 'all' failed
gmake: *** [all] Error 2
*** Error code 2

Stop.
make[1]: stopped in /data/pkgsrc/security/sign
*** Error code 1

Stop.
make: stopped in /data/pkgsrc/security/sign