We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a50f19 commit 76611faCopy full SHA for 76611fa
listen.go
@@ -12,7 +12,7 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
-//go:build !unix
+//go:build !unix || solaris
16
17
package caddy
18
listen_unix.go
@@ -15,7 +15,7 @@
// Even though the filename ends in _unix.go, we still have to specify the
// build constraint here, because the filename convention only works for
// literal GOOS values, and "unix" is a shortcut unique to build tags.
-//go:build unix
+//go:build unix && !solaris
19
20
21
listen_unix_setopt.go
@@ -1,4 +1,4 @@
1
-//go:build unix && !freebsd
+//go:build unix && !freebsd && !solaris
2
3
4
0 commit comments