diff options
author | 2024-10-14 09:59:12 +0000 | |
---|---|---|
committer | 2024-10-14 11:59:12 +0200 | |
commit | 6a76b9d609fab579a3b54674f098fda06e121e49 (patch) | |
tree | 6fbfcaceb88c3e9a86cbd41242042e1e9fe6ee27 /internal/db/sqlite/errors.go | |
parent | [chore]: Bump github.com/minio/minio-go/v7 from 7.0.77 to 7.0.78 (#3431) (diff) | |
download | gotosocial-6a76b9d609fab579a3b54674f098fda06e121e49.tar.xz |
[feature/OFFICIALLY UNSUPPORTED] add nowasm build tag to disable building with WebAssembly (#3429)
* add experimental build-tag 'nowasm' which uses local ffmpeg / ffprobe
* updated experimental support message
* add comment to build script explaining build tag
* add nowasm build tags to moderncsqlite files
Diffstat (limited to 'internal/db/sqlite/errors.go')
-rw-r--r-- | internal/db/sqlite/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/sqlite/errors.go b/internal/db/sqlite/errors.go index f814fa8a4..9429a1bcd 100644 --- a/internal/db/sqlite/errors.go +++ b/internal/db/sqlite/errors.go @@ -15,7 +15,7 @@ // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. -//go:build !moderncsqlite3 +//go:build !moderncsqlite3 && !nowasm package sqlite |