[client] Exclude UI fallback stubs from FreeBSD build

The _other.go fallback stubs in client/ui and client/ui/services matched
FreeBSD, dragging the Wails-importing services package into the FreeBSD
build and failing it (Wails v3 has no FreeBSD port). Add !freebsd (plus
!android/!ios/!js) to align them with the rest of these packages so the
whole UI is excluded on FreeBSD.
This commit is contained in:
Zoltán Papp
2026-06-17 17:24:39 +02:00
parent 262372ce6c
commit f9acc6a2e9
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
//go:build !linux || (linux && 386)
//go:build (!linux || (linux && 386)) && !freebsd && !android && !ios && !js
package main

View File

@@ -1,4 +1,4 @@
//go:build !darwin && !windows && !linux
//go:build !darwin && !windows && !linux && !freebsd && !android && !ios && !js
package services

View File

@@ -1,4 +1,4 @@
//go:build !linux || (linux && 386)
//go:build (!linux || (linux && 386)) && !freebsd && !android && !ios && !js
package main