Skip to content

Commit

Permalink
conncheck: build on more supported platforms (#1051)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienschmidt committed Jan 7, 2020
1 parent 8723940 commit 4bdaef4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion conncheck.go
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion conncheck_dummy.go
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion conncheck_test.go
Expand Up @@ -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

Expand Down

0 comments on commit 4bdaef4

Please sign in to comment.