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:
parent
6ce0306c66
commit
60a65bab7d
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build !mipsle && !netbsd
|
//go:build !mipsle && !netbsd && !(freebsd && arm)
|
||||||
|
|
||||||
package agent
|
package agent
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
//go:build mipsle || netbsd
|
//go:build mipsle || netbsd || (freebsd && arm)
|
||||||
|
|
||||||
package agent
|
package agent
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue