From 8e04ede2007f06c9bd2617f98396f83bbe8bee5e Mon Sep 17 00:00:00 2001 From: Paul Wilde <31094984+pswilde@users.noreply.github.com> Date: Fri, 13 Jun 2025 21:31:02 +0100 Subject: [PATCH] Add freebsd to main_unix.go Add freebsd compatibility --- main_unix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main_unix.go b/main_unix.go index 1acf66f..bd84a69 100644 --- a/main_unix.go +++ b/main_unix.go @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build (linux && !android) || dragonfly || openbsd -// +build linux,!android dragonfly openbsd +//go:build (linux && !android) || dragonfly || openbsd || freebsd +// +build linux,!android dragonfly openbsd freebsd package main