=> Bootstrap dependency digest>=20010302: found digest-20190127
WARNING: [license.mk] Every package should define a LICENSE.
===> 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 LaBrea-2.5nb2
--- all ---
/usr/bin/make  all-recursive
--- all-recursive ---
Making all in misc
Making all in inc
Making all in src
--- labrea.o ---
--- labrea_init.o ---
--- pkt_handler.o ---
--- labrea.o ---
if gcc -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/pkg/include -I/usr/include/pcap  -I/usr/pkg/include -I/usr/include  -O2 -D_FORTIFY_SOURCE=2 -I/usr/pkg/include -I/usr/include -Wall -MT labrea.o -MD -MP -MF ".deps/labrea.Tpo"  -c -o labrea.o `test -f 'labrea.c' || echo './'`labrea.c;  then mv -f ".deps/labrea.Tpo" ".deps/labrea.Po";  else rm -f ".deps/labrea.Tpo"; exit 1;  fi
--- pkt_handler.o ---
if gcc -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/pkg/include -I/usr/include/pcap  -I/usr/pkg/include -I/usr/include  -O2 -D_FORTIFY_SOURCE=2 -I/usr/pkg/include -I/usr/include -Wall -MT pkt_handler.o -MD -MP -MF ".deps/pkt_handler.Tpo"  -c -o pkt_handler.o `test -f 'pkt_handler.c' || echo './'`pkt_handler.c;  then mv -f ".deps/pkt_handler.Tpo" ".deps/pkt_handler.Po";  else rm -f ".deps/pkt_handler.Tpo"; exit 1;  fi
--- labrea_init.o ---
if gcc -DHAVE_CONFIG_H -I. -I. -I..  -I/usr/pkg/include -I/usr/include/pcap  -I/usr/pkg/include -I/usr/include  -O2 -D_FORTIFY_SOURCE=2 -I/usr/pkg/include -I/usr/include -Wall -MT labrea_init.o -MD -MP -MF ".deps/labrea_init.Tpo"  -c -o labrea_init.o `test -f 'labrea_init.c' || echo './'`labrea_init.c;  then mv -f ".deps/labrea_init.Tpo" ".deps/labrea_init.Po";  else rm -f ".deps/labrea_init.Tpo"; exit 1;  fi
--- labrea.o ---
labrea.c: In function 'main':
labrea.c:70:3: warning: implicit declaration of function 'util_alarm'; did you mean 'util_timer'? [-Wimplicit-function-declaration]
   util_alarm();   /* Set an alarm to cause timer pop */
   ^~~~~~~~~~
   util_timer
--- labrea_init.o ---
In file included from labrea_init.c:51:0:
../inc/pcaputil.h:18:10: error: conflicting types for 'pcap_open'
 pcap_t * pcap_open(char *device);
          ^~~~~~~~~
In file included from ../inc/pcaputil.h:12:0,
                 from labrea_init.c:51:
/usr/include/pcap/pcap.h:839:18: note: previous declaration of 'pcap_open' was here
 PCAP_API pcap_t *pcap_open(const char *source, int snaplen, int flags,
                  ^~~~~~~~~
--- pkt_handler.o ---
pkt_handler.c: In function 'throttle_data':
pkt_handler.c:144:10: warning: pointer targets in passing argument 4 of 'lbio_send_ip_pkt' differ in signedness [-Wpointer-sign]
          "Persist Trapping");
          ^~~~~~~~~~~~~~~~~~
In file included from pkt_handler.c:44:0:
../inc/lbio.h:68:6: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 int  lbio_send_ip_pkt (struct pkt *new, const struct pkt *pkt,
      ^~~~~~~~~~~~~~~~
pkt_handler.c:190:55: warning: pointer targets in passing argument 4 of 'lbio_send_ip_pkt' differ in signedness [-Wpointer-sign]
  lbio_send_ip_pkt(new, pkt, IP_HDR_LEN + TCP_HDR_LEN, msgptr);
                                                       ^~~~~~
In file included from pkt_handler.c:44:0:
../inc/lbio.h:68:6: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 int  lbio_send_ip_pkt (struct pkt *new, const struct pkt *pkt,
      ^~~~~~~~~~~~~~~~
--- labrea_init.o ---
labrea_init.c: In function 'build_bpf_filter':
labrea_init.c:126:20: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign]
   int len = strlen(texpr);
                    ^~~~~
In file included from labrea_init.c:29:0:
/usr/include/string.h:61:9: note: expected 'const char *' but argument is of type 'u_char * {aka unsigned char *}'
 size_t  strlen(const char *);
         ^~~~~~
labrea_init.c:130:15: warning: pointer targets in passing argument 1 of 'strlcpy' differ in signedness [-Wpointer-sign]
   if (strlcpy(p, chunk, len) >= len) {
               ^
In file included from labrea_init.c:29:0:
/usr/include/string.h:104:9: note: expected 'char *' but argument is of type 'u_char * {aka unsigned char *}'
 size_t  strlcpy(char *, const char *, size_t);
         ^~~~~~~
labrea_init.c:130:18: warning: pointer targets in passing argument 2 of 'strlcpy' differ in signedness [-Wpointer-sign]
   if (strlcpy(p, chunk, len) >= len) {
                  ^~~~~
In file included from labrea_init.c:29:0:
/usr/include/string.h:104:9: note: expected 'const char *' but argument is of type 'const u_char * {aka const unsigned char *}'
 size_t  strlcpy(char *, const char *, size_t);
         ^~~~~~~
labrea_init.c: In function 'read_number':
labrea_init.c:165:16: warning: pointer targets in passing argument 2 of 'strlcpy' differ in signedness [-Wpointer-sign]
   strlcpy(buf, p, sizeof(buf));     /* Copy, watching for buffer overflow */
                ^
In file included from labrea_init.c:29:0:
/usr/include/string.h:104:9: note: expected 'const char *' but argument is of type 'u_char * {aka unsigned char *}'
 size_t  strlcpy(char *, const char *, size_t);
         ^~~~~~~
--- pkt_handler.o ---
pkt_handler.c: In function 'ip_handler':
pkt_handler.c:429:10: warning: pointer targets in passing argument 4 of 'lbio_send_ip_pkt' differ in signedness [-Wpointer-sign]
          "Initial Connect - tarpitting");
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from pkt_handler.c:44:0:
../inc/lbio.h:68:6: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 int  lbio_send_ip_pkt (struct pkt *new, const struct pkt *pkt,
      ^~~~~~~~~~~~~~~~
--- labrea_init.o ---
labrea_init.c: In function 'labrea_init':
labrea_init.c:375:28: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
  io.intf_num = read_number(optarg);
                            ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
--- pkt_handler.o ---
pkt_handler.c:462:10: warning: pointer targets in passing argument 4 of 'lbio_send_ip_pkt' differ in signedness [-Wpointer-sign]
          "Inbound SYN/ACK");
          ^~~~~~~~~~~~~~~~~
In file included from pkt_handler.c:44:0:
../inc/lbio.h:68:6: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 int  lbio_send_ip_pkt (struct pkt *new, const struct pkt *pkt,
      ^~~~~~~~~~~~~~~~
--- labrea_init.o ---
labrea_init.c:423:38: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
       ctl.throttlesize = read_number(optarg);
                                      ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
labrea_init.c:426:30: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
       ctl.rate = read_number(optarg);
                              ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
labrea_init.c:441:31: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
       ctl.maxbw = read_number(optarg);
                               ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
labrea_init.c:462:32: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
  ctl.syslog_port = read_number(optarg);
                                ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
labrea_init.c:475:36: warning: pointer targets in passing argument 1 of 'read_number' differ in signedness [-Wpointer-sign]
       ctl.debuglevel = read_number(optarg);
                                    ^~~~~~
labrea_init.c:159:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 read_number (u_char *p)
 ^~~~~~~~~~~
labrea_init.c:543:22: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
     build_bpf_filter(texpr, bpf, BPFSIZE);
                      ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:543:29: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
     build_bpf_filter(texpr, bpf, BPFSIZE);
                             ^~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:553:24: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
       build_bpf_filter(texpr, " or (", BPFSIZE);
                        ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:553:31: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
       build_bpf_filter(texpr, " or (", BPFSIZE);
                               ^~~~~~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:556:19: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
  build_bpf_filter(texpr, argv[c], BPFSIZE); /* tack on another argument */
                   ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:556:26: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
  build_bpf_filter(texpr, argv[c], BPFSIZE); /* tack on another argument */
                          ^~~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:558:24: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
       build_bpf_filter(texpr, ")", BPFSIZE);
                        ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:558:31: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
       build_bpf_filter(texpr, ")", BPFSIZE);
                               ^~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:568:21: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
    build_bpf_filter(texpr, " or (", BPFSIZE);
                     ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
--- pkt_handler.o ---
pkt_handler.c:496:10: warning: pointer targets in passing argument 4 of 'lbio_send_ip_pkt' differ in signedness [-Wpointer-sign]
          "Responded to a Ping");
          ^~~~~~~~~~~~~~~~~~~~~
--- labrea_init.o ---
labrea_init.c:568:28: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
    build_bpf_filter(texpr, " or (", BPFSIZE);
                            ^~~~~~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
--- pkt_handler.o ---
In file included from pkt_handler.c:44:0:
../inc/lbio.h:68:6: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 int  lbio_send_ip_pkt (struct pkt *new, const struct pkt *pkt,
      ^~~~~~~~~~~~~~~~
--- labrea_init.o ---
labrea_init.c:573:25: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
        build_bpf_filter(texpr, mybuffer, BPFSIZE);
                         ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:573:32: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
        build_bpf_filter(texpr, mybuffer, BPFSIZE);
                                ^~~~~~~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:576:23: warning: pointer targets in passing argument 1 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
      build_bpf_filter(texpr, ")", BPFSIZE);
                       ^~~~~
labrea_init.c:123:1: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:576:30: warning: pointer targets in passing argument 2 of 'build_bpf_filter' differ in signedness [-Wpointer-sign]
      build_bpf_filter(texpr, ")", BPFSIZE);
                              ^~~
labrea_init.c:123:1: note: expected 'const u_char * {aka const unsigned char *}' but argument is of type 'char *'
 build_bpf_filter(u_char *texpr, const u_char *chunk, const size_t siz)
 ^~~~~~~~~~~~~~~~
labrea_init.c:670:13: warning: pointer targets in passing argument 1 of 'lbio_init' differ in signedness [-Wpointer-sign]
   lbio_init(dev, texpr);
             ^~~
In file included from labrea_init.c:54:0:
../inc/lbio.h:66:7: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 void  lbio_init(u_char *dev, u_char *texpr);
       ^~~~~~~~~
labrea_init.c:670:18: warning: pointer targets in passing argument 2 of 'lbio_init' differ in signedness [-Wpointer-sign]
   lbio_init(dev, texpr);
                  ^~~~~
In file included from labrea_init.c:54:0:
../inc/lbio.h:66:7: note: expected 'u_char * {aka unsigned char *}' but argument is of type 'char *'
 void  lbio_init(u_char *dev, u_char *texpr);
       ^~~~~~~~~
*** [labrea_init.o] Error code 1

make[2]: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1/src
1 error

make[2]: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1/src
*** [all-recursive] Error code 1

make[1]: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1
1 error

make[1]: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1
*** [all] Error code 2

make: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1
1 error

make: stopped in /scratch/work/net/LaBrea/work/labrea-2.5-stable-1
*** Error code 2

Stop.
make[1]: stopped in /tree/pkgsrc/net/LaBrea
*** Error code 1

Stop.
make: stopped in /tree/pkgsrc/net/LaBrea