SQLite3 is set in settings but NOT Supported

Changed installation (MacOs).
I used to work with brew but somehow that isn’t updated that frequently.
Now I made a local build, but still want to use the “old” situation.
So I have this configuration file that uses SQLite3. But it seems that it is not supported anymore?

sqlite3 is still very much supported, and is enabled in the macos builds (and others too,but this convo is about macos).

Are you using the latest stable, or the “HEAD” version where it compiles locally?

As for updating frequency, we tend to update our homebrew tap within days of a new update.

Just dit a git pull on master, then a make, and then started it:

Gitea % ./gitea web -C ~/stack/Gitea -c custom/conf/app.ini
2021/10/14 07:28:22 ...s/setting/setting.go:545:SetCustomPathAndConf() [W] Using 'custom' directory as relative origin for configuration file: '/Users/marcelloh/stack/Gitea/custom/conf/app.ini'
2021/10/14 07:28:22 cmd/web.go:102:runWeb() [I] Starting Gitea on PID: 3129
2021/10/14 07:28:22 cmd/web.go:146:runWeb() [I] Global init
2021/10/14 07:28:22 routers/init.go:77:GlobalInit() [I] Git Version: 2.33.0, Wire Protocol Version 2 Enabled
2021/10/14 07:28:22 routers/init.go:80:GlobalInit() [I] AppPath: /Users/marcelloh/data/go-tools/Gitea/gitea
2021/10/14 07:28:22 routers/init.go:81:GlobalInit() [I] AppWorkPath: /Users/marcelloh/data/go-tools/Gitea
2021/10/14 07:28:22 routers/init.go:82:GlobalInit() [I] Custom path: /Users/marcelloh/stack/Gitea
2021/10/14 07:28:22 routers/init.go:83:GlobalInit() [I] Log path: /usr/local/bin/log
2021/10/14 07:28:22 routers/init.go:84:GlobalInit() [I] Configuration file: /Users/marcelloh/stack/Gitea/custom/conf/app.ini
2021/10/14 07:28:22 routers/init.go:85:GlobalInit() [I] Run Mode: Prod
2021/10/14 07:28:22 ...dules/setting/log.go:283:newLogService() [I] Gitea v1.16.0+dev-353-gd47798ccc built with GNU Make 3.81, go1.17.2
2021/10/14 07:28:22 ...dules/setting/log.go:330:newLogService() [I] Gitea Log Mode: Console(Console:)
2021/10/14 07:28:22 ...dules/setting/log.go:246:generateNamedLogger() [I] Router Log: Console(console:)
2021/10/14 07:28:22 ...les/setting/cache.go:78:newCacheService() [I] Cache Service Enabled
2021/10/14 07:28:22 ...les/setting/cache.go:93:newCacheService() [I] Last Commit Cache Service Enabled
2021/10/14 07:28:22 ...s/setting/session.go:75:newSessionService() [I] Session Service Enabled
2021/10/14 07:28:22 ...s/storage/storage.go:171:initAttachments() [I] Initialising Attachment storage with type: 
2021/10/14 07:28:22 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /Users/marcelloh/data/go-tools/Gitea/data/attachments
2021/10/14 07:28:22 ...s/storage/storage.go:165:initAvatars() [I] Initialising Avatar storage with type: 
2021/10/14 07:28:22 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /Users/marcelloh/data/go-tools/Gitea/data/avatars
2021/10/14 07:28:22 ...s/storage/storage.go:183:initRepoAvatars() [I] Initialising Repository Avatar storage with type: 
2021/10/14 07:28:22 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /Users/marcelloh/data/go-tools/Gitea/data/repo-avatars
2021/10/14 07:28:22 ...s/storage/storage.go:177:initLFS() [I] Initialising LFS storage with type: 
2021/10/14 07:28:22 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /usr/local/bin/data/lfs
2021/10/14 07:28:22 ...s/storage/storage.go:189:initRepoArchives() [I] Initialising Repository Archive storage with type: 
2021/10/14 07:28:22 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /Users/marcelloh/data/go-tools/Gitea/data/repo-archive
2021/10/14 07:28:22 routers/init.go:99:GlobalInit() [F] SQLite3 is set in settings but NOT Supported

oh, I see. You are building it yourself. In that case you need to set sqlite tag so that the option builds. See Hacking on Gitea - Docs for more details.