summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/memory/mmap_unix.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-03-06 11:00:53 +0100
committerLibravatar GitHub <noreply@github.com>2023-03-06 11:00:53 +0100
commitb344c2c8f4b2ef98effe2f19d70f63c5a835ba86 (patch)
treec1c75f5a0c55a118a0e34e6890bae0230133d25c /vendor/modernc.org/memory/mmap_unix.go
parent[bugfix] internal server error on search not found (#1590) (diff)
downloadgotosocial-b344c2c8f4b2ef98effe2f19d70f63c5a835ba86.tar.xz
[chore] Update uptrace/bun and modernc/sqlite dependencies (#1598)
* [chore] Update bun from 1.1.10 -> 1.1.12 * [chore] bump modernc/sqlite 1.20.4 -> 1.21.0
Diffstat (limited to 'vendor/modernc.org/memory/mmap_unix.go')
-rw-r--r--vendor/modernc.org/memory/mmap_unix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/modernc.org/memory/mmap_unix.go b/vendor/modernc.org/memory/mmap_unix.go
index d076ad031..93f9b820c 100644
--- a/vendor/modernc.org/memory/mmap_unix.go
+++ b/vendor/modernc.org/memory/mmap_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-MMAP-GO file.
-//go:build darwin || dragonfly || freebsd || linux || openbsd || solaris || netbsd
-// +build darwin dragonfly freebsd linux openbsd solaris netbsd
+//go:build darwin || dragonfly || freebsd || linux || openbsd || (solaris && !illumos) || netbsd
+// +build darwin dragonfly freebsd linux openbsd solaris,!illumos netbsd
// Modifications (c) 2017 The Memory Authors.