From 3ba699544ccd1f62d219e9fb626a7ca1259ab3bb Mon Sep 17 00:00:00 2001 From: Julien Schmidt Date: Mon, 6 Jan 2020 17:39:46 +0100 Subject: [PATCH] conncheck: build on more supported platforms --- conncheck.go | 2 +- conncheck_dummy.go | 2 +- conncheck_test.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conncheck.go b/conncheck.go index 3dd115485..024eb2858 100644 --- a/conncheck.go +++ b/conncheck.go @@ -6,7 +6,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at http://mozilla.org/MPL/2.0/. -// +build linux darwin +// +build linux darwin dragonfly freebsd netbsd openbsd solaris illumos package mysql diff --git a/conncheck_dummy.go b/conncheck_dummy.go index d042811c1..ea7fb607a 100644 --- a/conncheck_dummy.go +++ b/conncheck_dummy.go @@ -6,7 +6,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at http://mozilla.org/MPL/2.0/. -// +build !linux,!darwin +// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd,!solaris,!illumos package mysql diff --git a/conncheck_test.go b/conncheck_test.go index 8cd81223a..53995517b 100644 --- a/conncheck_test.go +++ b/conncheck_test.go @@ -6,7 +6,7 @@ // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at http://mozilla.org/MPL/2.0/. -// +build linux darwin +// +build linux darwin dragonfly freebsd netbsd openbsd solaris illumos package mysql