From 9e3d2ded3e7c61a1d8375ff8adb67868b05c372d Mon Sep 17 00:00:00 2001 From: Santiago De la Cruz Date: Thu, 27 May 2021 15:52:30 -0400 Subject: [PATCH] Fix build for illumos and solaris From Go 1.13, the illumos build tag implies the solaris build tag (but it's better use both to clarify) --- user_other.go | 2 +- user_posix.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/user_other.go b/user_other.go index f1c33134d..85f70ba70 100644 --- a/user_other.go +++ b/user_other.go @@ -1,6 +1,6 @@ // Package pq is a pure Go Postgres driver for the database/sql package. -// +build js android hurd illumos zos +// +build js android hurd zos package pq diff --git a/user_posix.go b/user_posix.go index a51019205..22299322a 100644 --- a/user_posix.go +++ b/user_posix.go @@ -1,6 +1,6 @@ // Package pq is a pure Go Postgres driver for the database/sql package. -// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd plan9 solaris rumprun +// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd plan9 solaris rumprun illumos package pq