Fix building zot natively on FreeBSD (#3247)

fix: allow zot to build on a FreeBSD host (#3246)

The build works as long as the protoc package is installed on the build
host. This also fixes lint checks when building on FreeBSD, working
around common lint complaints caused by the fact that rlim_t is int64 on
FreeBSD.

Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
Doug Rabson
2025-07-08 13:12:15 +01:00
committed by GitHub
parent e33a937b38
commit 432fde45af
5 changed files with 9 additions and 9 deletions
+3
View File
@@ -0,0 +1,3 @@
package common
type RlimT = int64
+3
View File
@@ -0,0 +1,3 @@
package common
type RlimT = uint64