fix(agent): disable seahorse context manager on freebsd/arm

Exclude freebsd/arm from the seahorse-enabled build and route it to the
unsupported stub implementation.

This avoids freebsd/arm build failures caused by modernc sqlite/libc while
keeping picoclaw buildable on that target.
This commit is contained in:
wenjie 2026-04-08 10:21:00 +08:00
parent 6ce0306c66
commit 60a65bab7d
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
//go:build !mipsle && !netbsd
//go:build !mipsle && !netbsd && !(freebsd && arm)
package agent

View file

@ -1,4 +1,4 @@
//go:build mipsle || netbsd
//go:build mipsle || netbsd || (freebsd && arm)
package agent