mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 08:11:50 -04:00
- Increment the go version required by the port to build - Add a patch to fix the following error during the build target: internal/database/database.go:59:10: undefined: OpenSQLiteDatabase See also: https://github.com/go-shiori/shiori/issues/947 Release changes: https://github.com/go-shiori/shiori/releases/tag/v1.7.0 Reported by: github-actions[bot] <notifications@github.com>
10 lines
306 B
Go
10 lines
306 B
Go
--- internal/database/sqlite_noncgo.go.orig 1979-11-29 23:00:00 UTC
|
|
+++ internal/database/sqlite_noncgo.go
|
|
@@ -1,5 +1,5 @@
|
|
-//go:build linux || windows || darwin
|
|
-// +build linux windows darwin
|
|
+//go:build linux || windows || darwin || freebsd
|
|
+// +build linux windows darwin freebsd
|
|
|
|
package database
|
|
|