From 8b4c744ca8be2428fca16f3efa701d65d16c92cc Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 23 Jul 2023 02:29:52 +0900 Subject: [PATCH] internal/ui: rename a file Use `_linbsd.go` suffix for Linux and BSDs. --- internal/ui/{ui_glfw_unix.go => ui_glfw_linbsd.go} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename internal/ui/{ui_glfw_unix.go => ui_glfw_linbsd.go} (98%) diff --git a/internal/ui/ui_glfw_unix.go b/internal/ui/ui_glfw_linbsd.go similarity index 98% rename from internal/ui/ui_glfw_unix.go rename to internal/ui/ui_glfw_linbsd.go index ed60d5422..226649255 100644 --- a/internal/ui/ui_glfw_unix.go +++ b/internal/ui/ui_glfw_linbsd.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build !android && !darwin && !js && !windows && !nintendosdk +//go:build (freebsd || (linux && !android) || netbsd || openbsd) && !nintendosdk package ui