1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:27:35 +00:00

Ports/aria2: Explicitly disable Firefox/Chromium cookie support

Previously, this would only be enabled if the `sqlite` port was
already installed. This change explicitly disables the feature, as it
isn't that useful on SerenityOS. This ensures a consistent build
regardless of whether the `sqlite` port is installed or not.
This commit is contained in:
Tim Ledbetter 2023-08-23 20:41:30 +01:00 committed by Tim Schumacher
parent 434c97010f
commit 87c17c9bb9

View file

@ -18,4 +18,5 @@ configopts+=(
"--with-libuv"
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
'--without-libcares'
'--without-sqlite3'
)