=> Bootstrap dependency digest>=20211023: found digest-20220214
WARNING: [license.mk] Every package should define a LICENSE.
===> Building for s10sh-0.2.0nb3
--- main.o ---
--- crc.o ---
--- usb.o ---
--- main.o ---
gcc -pipe -Os -I/opt/pkg/include -Wall -g -I/opt/pkg/include -c main.c -DHAVE_USB_SUPPORT
--- crc.o ---
gcc -pipe -Os -I/opt/pkg/include -Wall -g -I/opt/pkg/include -c crc.c -DHAVE_USB_SUPPORT
--- usb.o ---
gcc -pipe -Os -I/opt/pkg/include -Wall -g -I/opt/pkg/include -c usb.c -DHAVE_USB_SUPPORT
--- main.o ---
main.c:273:14: warning: use of bitwise '|' with boolean operands [-Wbitwise-instead-of-logical]
                } else if (!strcmp(cmd, "clear") | !strcmp(cmd, "cls")) {
                           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                 ||
main.c:273:14: note: cast one or both operands to int to silence this warning
--- usb.o ---
usb.c:153:21: warning: passing 'char *' to parameter of type '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]
                        dump_hex("DATA", buffer, size);
                                         ^~~~~~
./common.h:36:53: note: passing argument to parameter 'buf' here
void dump_hex(const char *msg, const unsigned char *buf, int len);
                                                    ^
usb.c:173:21: warning: passing 'char *' to parameter of type '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]
                        dump_hex("DATA", buffer, size);
                                         ^~~~~~
./common.h:36:53: note: passing argument to parameter 'buf' here
void dump_hex(const char *msg, const unsigned char *buf, int len);
                                                    ^
usb.c:221:37: warning: passing 'unsigned char[4096]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        return USB_write_control_msg(0x10, buffer, 0x50+size);
                                           ^~~~~~
usb.c:136:44: note: passing argument to parameter 'buffer' here
int USB_write_control_msg(int value, char *buffer, int size)
                                           ^
usb.c:268:43: warning: passing 'unsigned char[4096]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        while (USB_read_control_msg(0x55, buffer, 1) == -1);
                                          ^~~~~~
usb.c:158:43: note: passing argument to parameter 'buffer' here
int USB_read_control_msg(int value, char *buffer, int size)
                                          ^
usb.c:269:35: warning: passing 'unsigned char[4096]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        USB_read_control_msg(0x1, buffer, 0x58);
                                  ^~~~~~
usb.c:158:43: note: passing argument to parameter 'buffer' here
int USB_read_control_msg(int value, char *buffer, int size)
                                          ^
usb.c:270:37: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        USB_write_control_msg(0x11, buffer+0x48, 0x10);
                                    ^~~~~~~~~~~
usb.c:136:44: note: passing argument to parameter 'buffer' here
int USB_write_control_msg(int value, char *buffer, int size)
                                           ^
--- main.o ---
In file included from main.c:577:
./bytesex.h:6:10: fatal error: 'sys/endian.h' file not found
#include <sys/endian.h>
         ^~~~~~~~~~~~~~
1 warning and 1 error generated.
--- usb.o ---
usb.c:364:35: warning: passing 'char[4]' to parameter of type 'unsigned char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        USB_cmd(0x09, 0x11, 0x201, 0x01, diskstr, 4);
                                         ^~~~~~~
usb.c:204:108: note: passing argument to parameter 'payload' here
int USB_cmd(unsigned char cmd1, unsigned char cmd2, unsigned int cmd3, unsigned int serial, unsigned char *payload, int size)
                                                                                                           ^
usb.c:398:12: warning: passing 'unsigned char[1024]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                snprintf(arg, 1024, "%s\\%s", lastpath, pathname);
                         ^~~
/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/secure/_stdio.h:57:29: note: expanded from macro 'snprintf'
  __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
                            ^~~
usb.c:399:12: warning: assigning to 'char *' from 'unsigned char[1024]' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                pathname = arg;
                         ^ ~~~
usb.c:402:34: warning: passing 'char *' to parameter of type 'unsigned char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        USB_cmd(0x5, 0x11, 0x201, 0x01, pathname, strlen(pathname)+1);
                                        ^~~~~~~~
usb.c:204:108: note: passing argument to parameter 'payload' here
int USB_cmd(unsigned char cmd1, unsigned char cmd2, unsigned int cmd3, unsigned int serial, unsigned char *payload, int size)
                                                                                                           ^
usb.c:416:12: warning: passing 'unsigned char[1024]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                snprintf(arg, 1024, "%s\\%s", lastpath, pathname);
                         ^~~
/Library/Developer/CommandLineTools/SDKs/MacOSX11.3.sdk/usr/include/secure/_stdio.h:57:29: note: expanded from macro 'snprintf'
  __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
                            ^~~
usb.c:417:12: warning: assigning to 'char *' from 'unsigned char[1024]' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                pathname = arg;
                         ^ ~~~
usb.c:420:34: warning: passing 'char *' to parameter of type 'unsigned char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
        USB_cmd(0x6, 0x11, 0x201, 0x01, pathname, strlen(pathname)+1);
                                        ^~~~~~~~
usb.c:204:108: note: passing argument to parameter 'payload' here
int USB_cmd(unsigned char cmd1, unsigned char cmd2, unsigned int cmd3, unsigned int serial, unsigned char *payload, int size)
                                                                                                           ^
usb.c:526:31: warning: passing 'unsigned char[8192]' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
                USB_write_control_msg(0x10, buffer, 0x40);
                                            ^~~~~~
usb.c:136:44: note: passing argument to parameter 'buffer' here
int USB_write_control_msg(int value, char *buffer, int size)
                                           ^
usb.c:470:10: warning: variable 'progress_bar' set but not used [-Wunused-but-set-variable]
        int fd, progress_bar = 0;
                ^
--- main.o ---
*** [main.o] Error code 1

bmake: stopped in /Users/pbulk/build/graphics/s10sh/work/s10sh-0.2.0
--- usb.o ---
15 warnings generated.
1 error

bmake: stopped in /Users/pbulk/build/graphics/s10sh/work/s10sh-0.2.0
*** Error code 2

Stop.
bmake[1]: stopped in /Volumes/data/jenkins/workspace/pkgsrc-macos11-trunk-arm64/graphics/s10sh
*** Error code 1

Stop.
bmake: stopped in /Volumes/data/jenkins/workspace/pkgsrc-macos11-trunk-arm64/graphics/s10sh