Open kagalle opened 1 year ago
I got this working in FreeBSD 13.1 but I needed to make two changes. I am sharing in case this would help anyone else.
@@ -1,6 +1,6 @@ CFLAGS=-Wall -Wextra --std=c99 -O2 -CUPSDIR=$(shell cups-config --serverbin) -CUPSDATADIR=$(shell cups-config --datadir) +CUPSDIR=/usr/local/libexec/cups +CUPSDATADIR=/usr/local/share/cups
@@ -149,7 +149,7 @@ void dict_add(u8 byte, u8 *dict) { dict[0] = byte; }
-int fls(unsigned int n) { +int fls(int n) {
Thanks.
I got this working in FreeBSD 13.1 but I needed to make two changes. I am sharing in case this would help anyone else.
-int fls(unsigned int n) { +int fls(int n) {