=> Bootstrap dependency digest>=20211023: found digest-20211023 WARNING: [license.mk] Every package should define a LICENSE. ===> 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 otpCalc-0.97 gcc -s -O3 -Wall -pipe `gtk-config --cflags` -c crypto.c -DVERSION=\"0.97\" -DHAVE_CONFIG_H gcc -s -O3 -Wall -pipe `gtk-config --cflags` -c gui.c -DVERSION=\"0.97\" -DHAVE_CONFIG_H gcc -s -O3 -Wall -pipe `gtk-config --cflags` -c callbacks.c -DVERSION=\"0.97\" -DHAVE_CONFIG_H gcc -s -O3 -Wall -pipe `gtk-config --cflags` -c utility.c -DVERSION=\"0.97\" -DHAVE_CONFIG_H crypto.c: In function 'md4lite': crypto.c:74:6: warning: pointer targets in passing argument 1 of 'MD4' differ in signedness [-Wpointer-sign] MD4(message, len, digest); ^~~~~~~ In file included from crypto.c:31:0: /usr/include/openssl/md4.h:43:16: note: expected 'const unsigned char *' but argument is of type 'char *' unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md); ^~~ crypto.c: In function 'md5lite': crypto.c:106:6: warning: pointer targets in passing argument 1 of 'MD5' differ in signedness [-Wpointer-sign] MD5(message, len, digest); ^~~~~~~ In file included from crypto.c:38:0: /usr/include/openssl/md5.h:43:16: note: expected 'const unsigned char *' but argument is of type 'char *' unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md); ^~~ crypto.c: In function 'rmd160lite': crypto.c:140:12: warning: pointer targets in passing argument 1 of 'RIPEMD160' differ in signedness [-Wpointer-sign] RIPEMD160(message, len, digest); ^~~~~~~ In file included from crypto.c:45:0: /usr/include/openssl/ripemd.h:38:16: note: expected 'const unsigned char *' but argument is of type 'char *' unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md); ^~~~~~~~~ crypto.c: In function 'sha1lite': crypto.c:189:7: warning: pointer targets in passing argument 1 of 'SHA1' differ in signedness [-Wpointer-sign] SHA1(message, len, digest); ^~~~~~~ In file included from crypto.c:51:0: /usr/include/openssl/sha.h:48:16: note: expected 'const unsigned char *' but argument is of type 'char *' unsigned char *SHA1(const unsigned char *d, size_t n, unsigned char *md); ^~~~ utility.c: In function 'parity': utility.c:60:21: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] parity += extract(message, i, 2); ^~~~~~~ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c: In function 'sixwords': utility.c:419:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 0, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c:420:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 11, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c:421:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 22, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c:422:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 33, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c:423:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 44, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ In file included from /usr/include/stdio.h:597:0, from utility.c:23: utility.c:424:18: warning: pointer targets in passing argument 1 of 'extract' differ in signedness [-Wpointer-sign] words[extract(message, 55, 11)], ^ utility.c:31:23: note: expected 'char *' but argument is of type 'unsigned char *' static unsigned short extract(char *s, int start, int length) ^~~~~~~ utility.c:427:9: warning: pointer targets in return differ in signedness [-Wpointer-sign] return response; ^~~~~~~~ sed -e's/VERSION/0.97/g' otpCalc.man >otpCalc.1 callbacks.c: In function 'selector': callbacks.c:216:17: warning: pointer targets in passing argument 1 of 'parse' differ in signedness [-Wpointer-sign] parsed = parse(selection->data, set); ^~~~~~~~~ In file included from callbacks.c:29:0: utility.h:8:16: note: expected 'char *' but argument is of type 'guchar * {aka unsigned char *}' unsigned short parse(char *, struct tokens *); ^~~~~ callbacks.c:224:46: warning: pointer targets in passing argument 2 of 'gtk_entry_set_text' differ in signedness [-Wpointer-sign] gtk_entry_set_text(GTK_ENTRY(te_challenge), selection->data); ^~~~~~~~~ In file included from /tmp/security/otpCalc/work/.buildlink/include/gtk-1.2/gtk/gtkcolorsel.h:35:0, from /tmp/security/otpCalc/work/.buildlink/include/gtk-1.2/gtk/gtk.h:48, from callbacks.c:25: /tmp/security/otpCalc/work/.buildlink/include/gtk-1.2/gtk/gtkentry.h:88:12: note: expected 'const gchar * {aka const char *}' but argument is of type 'guchar * {aka unsigned char *}' void gtk_entry_set_text (GtkEntry *entry, ^~~~~~~~~~~~~~~~~~ gcc -s -O3 -Wall -pipe `gtk-config --cflags` crypto.o gui.o callbacks.o utility.o -o otpCalc `gtk-config --libs` -lcrypto -DVERSION=\"0.97\" -DHAVE_CONFIG_H