=> Bootstrap dependency digest>=20211023: found digest-20220214
===> Skipping vulnerability checks.
WARNING: No /usr/pkg/pkgdb/pkg-vulnerabilities file found.
WARNING: To fix run: `/usr/sbin/pkg_admin -K /usr/pkg/pkgdb fetch-pkg-vulnerabilities'.
===> Building for miniasm-0.3
gcc -c -g -Wall -O2 -Wc++-compat  -I. sys.c -o sys.o
gcc -c -g -Wall -O2 -Wc++-compat  -I. sdict.c -o sdict.o
gcc -c -g -Wall -O2 -Wc++-compat  -I. paf.c -o paf.o
gcc -c -g -Wall -O2 -Wc++-compat  -I. asg.c -o asg.o
gcc -c -g -Wall -O2 -Wc++-compat  -I. common.c -o common.o
gcc -c -g -Wall -O2 -Wc++-compat  -I. hit.c -o hit.o
hit.c: In function 'ma_hit_read':
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
  if (ma_verbose >= 3) fprintf(stderr, "[M::%s::%s] read %ld hits; stored %ld hits and %d sequences (%ld bp)\n", __func__, sys_timestamp(), tot, h.n, d->n_seq, tot_len);
                                       ^
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 8 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c:103:39: warning: format '%ld' expects argument of type 'long int', but argument 8 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c: In function 'ma_hit_sub':
hit.c:132:4: warning: implicit declaration of function 'ks_introsort_uint32_t' [-Wimplicit-function-declaration]
    ks_introsort_uint32_t(b.n, b.a);
    ^
hit.c:158:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
   fprintf(stderr, "[M::%s::%s] %ld query sequences remain after sub\n", __func__, sys_timestamp(), n_remained);
                   ^
hit.c:158:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c: In function 'ma_hit_cut':
hit.c:191:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
   fprintf(stderr, "[M::%s::%s] %ld hits remain after cut\n", __func__, sys_timestamp(), m);
                   ^
hit.c:191:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c: In function 'ma_hit_flt':
hit.c:214:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
   fprintf(stderr, "[M::%s::%s] %ld hits remain after filtering; crude coverage after filtering: %.2f\n", __func__, sys_timestamp(), m, *cov);
                   ^
hit.c:214:19: warning: format '%ld' expects argument of type 'long int', but argument 5 has type 'size_t {aka unsigned int}' [-Wformat=]
hit.c: In function 'ma_hit_contained':
hit.c:254:19: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'size_t {aka unsigned int}' [-Wformat=]
   fprintf(stderr, "[M::%s::%s] %d sequences and %ld hits remain after containment removal\n", __func__, sys_timestamp(), d->n_seq, m);
                   ^
hit.c:254:19: warning: format '%ld' expects argument of type 'long int', but argument 6 has type 'size_t {aka unsigned int}' [-Wformat=]
gcc -c -g -Wall -O2 -Wc++-compat  -I. asm.c -o asm.o
In file included from asm.c:61:0:
kdq.h:8:17: error: width of 'front' exceeds its type
  typedef struct { \
                 ^
kdq.h:93:2: note: in expansion of macro '__KDQ_TYPE'
  __KDQ_TYPE(type) \
  ^
kdq.h:104:24: note: in expansion of macro 'KDQ_INIT2'
 #define KDQ_INIT(type) KDQ_INIT2(type, static inline klib_unused)
                        ^
asm.c:62:1: note: in expansion of macro 'KDQ_INIT'
 KDQ_INIT(uint64_t)
 ^
asm.c: In function 'ma_ug_gen':
kdq.h:13:21: error: unknown type name 'kdq_uint64_t_t'
 #define kdq_t(type) kdq_##type##_t
                     ^
asm.c:121:2: note: in expansion of macro 'kdq_t'
  kdq_t(uint64_t) *q;
  ^
kdq.h:118:24: warning: implicit declaration of function 'kdq_init_uint64_t' [-Wimplicit-function-declaration]
 #define kdq_init(type) kdq_init_##type()
                        ^
asm.c:128:6: note: in expansion of macro 'kdq_init'
  q = kdq_init(uint64_t);
      ^
asm.c:128:4: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  q = kdq_init(uint64_t);
    ^
asm.c:134:4: error: request for member 'count' in something not a structure or union
   q->count = 0, start = v, end = v^1, len = 0;
    ^
asm.c:134:15: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   q->count = 0, start = v, end = v^1, len = 0;
               ^
In file included from asm.c:61:0:
kdq.h:122:30: warning: implicit declaration of function 'kdq_push_uint64_t' [-Wimplicit-function-declaration]
 #define kdq_push(type, q, v) kdq_push_##type(q, v)
                              ^
asm.c:143:4: note: in expansion of macro 'kdq_push'
    kdq_push(uint64_t, q, (uint64_t)w<<32 | l);
    ^
kdq.h:14:25: error: request for member 'count' in something not a structure or union
 #define kdq_size(q) ((q)->count)
                         ^
asm.c:148:27: note: in expansion of macro 'kdq_size'
   if (start != (end^1) || kdq_size(q) == 0) { // linear unitig
                           ^
kdq.h:125:33: warning: implicit declaration of function 'kdq_unshift_uint64_t' [-Wimplicit-function-declaration]
 #define kdq_unshift(type, q, v) kdq_unshift_##type(q, v)
                                 ^
asm.c:164:4: note: in expansion of macro 'kdq_unshift'
    kdq_unshift(uint64_t, q, (uint64_t)w<<32 | l);
    ^
kdq.h:14:25: error: request for member 'count' in something not a structure or union
 #define kdq_size(q) ((q)->count)
                         ^
asm.c:171:66: note: in expansion of macro 'kdq_size'
   p->s = 0, p->start = start, p->end = end, p->len = len, p->n = kdq_size(q), p->circ = (start == UINT32_MAX);
                                                                  ^
asm.c:171:77: warning: left-hand operand of comma expression has no effect [-Wunused-value]
   p->s = 0, p->start = start, p->end = end, p->len = len, p->n = kdq_size(q), p->circ = (start == UINT32_MAX);
                                                                             ^
In file included from asm.c:61:0:
kdq.h:14:25: error: request for member 'count' in something not a structure or union
 #define kdq_size(q) ((q)->count)
                         ^
asm.c:175:19: note: in expansion of macro 'kdq_size'
   for (i = 0; i < kdq_size(q); ++i)
                   ^
kdq.h:17:26: error: request for member 'a' in something not a structure or union
 #define kdq_at(q, i) ((q)->a[((q)->front + (i)) & (q)->mask])
                          ^
asm.c:176:14: note: in expansion of macro 'kdq_at'
    p->a[i] = kdq_at(q, i);
              ^
kdq.h:17:34: error: request for member 'front' in something not a structure or union
 #define kdq_at(q, i) ((q)->a[((q)->front + (i)) & (q)->mask])
                                  ^
asm.c:176:14: note: in expansion of macro 'kdq_at'
    p->a[i] = kdq_at(q, i);
              ^
kdq.h:17:54: error: request for member 'mask' in something not a structure or union
 #define kdq_at(q, i) ((q)->a[((q)->front + (i)) & (q)->mask])
                                                      ^
asm.c:176:14: note: in expansion of macro 'kdq_at'
    p->a[i] = kdq_at(q, i);
              ^
kdq.h:119:30: warning: implicit declaration of function 'kdq_destroy_uint64_t' [-Wimplicit-function-declaration]
 #define kdq_destroy(type, q) kdq_destroy_##type(q)
                              ^
asm.c:178:2: note: in expansion of macro 'kdq_destroy'
  kdq_destroy(uint64_t, q);
  ^
gmake: *** [Makefile:12: asm.o] Error 1
gmake: *** Waiting for unfinished jobs....
*** Error code 2

Stop.
make[1]: stopped in /tree/pkgsrc/biology/miniasm
*** Error code 1

Stop.
make: stopped in /tree/pkgsrc/biology/miniasm