build: inline libxxhash by default

This commit is contained in:
CismonX 2025-06-29 12:19:11 +08:00
parent 30f82f5613
commit 65d29fd017
No known key found for this signature in database
GPG key ID: 3094873E29A482FB
2 changed files with 3 additions and 3 deletions

View file

@ -104,8 +104,8 @@ Installation
* No longer requires: libseccomp
- `--disable-sandbox-landlock` (Linux-only)
* Disable the [Landlock] feature in the sandbox implementation
- `--enable-xxhash-inline`
* Use xxHash as a header-only library
- `--disable-xxhash-inline`
* Do not use xxHash as a header-only library
- `--disable-backend-firefox-write`
* Build the Firefox backend without write features
* No longer requires: Nettle, uriparser

View file

@ -61,7 +61,7 @@ AS_VAR_IF([host_os_is_linux], [yes], [
EX_FEAT([sandbox-landlock], [yes], [Landlock features for sandboxing])
])
EX_FEAT([xxhash-inline], [no], [using xxhash as a header-only library])
EX_FEAT([xxhash-inline], [yes], [using xxhash as a header-only library])
EX_FEAT([bookmarkfs-debug], [no], [debugging features for BookmarkFS])