From 87c17c9bb9996a3b66a22d89aaee64d7ab8512d8 Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Wed, 23 Aug 2023 20:41:30 +0100 Subject: [PATCH] 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. --- Ports/aria2/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/aria2/package.sh b/Ports/aria2/package.sh index 6d6e31bf537..d62dce9898a 100755 --- a/Ports/aria2/package.sh +++ b/Ports/aria2/package.sh @@ -18,4 +18,5 @@ configopts+=( "--with-libuv" "--with-sysroot=${SERENITY_INSTALL_ROOT}" '--without-libcares' + '--without-sqlite3' )