summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@FreeBSD.org>2023-03-29 17:03:17 +0000
committerRobert Clausecker <fuz@FreeBSD.org>2023-03-31 12:42:07 +0200
commit037431b5b7b5f2929eb336fd022911e224b18078 (patch)
treeaf769c971a20f0e37844a0aa414ecbef68beb49b
parent5a6a00ae2b7fa49eb0384d0843d24c0ad86b5b53 (diff)
downloadfreebsd-ports-037431b5b7b5f2929eb336fd022911e224b18078.zip
dns/amass: fix build on riscv64
Add missing riscv64-specific bits to github.com/boltdb/bolt dependency. Sponsored by: Berliner Linux User Group e.V. Obtained from: go.etcd.io/bbolt Approved by: portmgr (build fix blanket)
-rw-r--r--dns/amass/files/patch-vendor_github.com_boltdb_bolt_bolt__riscv64.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/dns/amass/files/patch-vendor_github.com_boltdb_bolt_bolt__riscv64.go b/dns/amass/files/patch-vendor_github.com_boltdb_bolt_bolt__riscv64.go
new file mode 100644
index 000000000000..8b11be4f4104
--- /dev/null
+++ b/dns/amass/files/patch-vendor_github.com_boltdb_bolt_bolt__riscv64.go
@@ -0,0 +1,16 @@
+--- /dev/null 2023-03-29 16:51:35 UTC
++++ vendor/github.com/boltdb/bolt/bolt_riscv64.go
+@@ -0,0 +1,13 @@
++//go:build riscv64
++// +build riscv64
++
++package bolt
++
++// maxMapSize represents the largest mmap size supported by Bolt.
++const maxMapSize = 0xFFFFFFFFFFFF // 256TB
++
++// maxAllocSize is the size used when creating array pointers.
++const maxAllocSize = 0x7FFFFFFF
++
++// are unaligned reads/writes not supported?
++var brokenUnaligned = false