From 434c97010f53d576ef090d34b6ac0b8c9bf210aa Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Wed, 23 Aug 2023 19:52:37 +0100 Subject: [PATCH] Ports/aria2: Explicitly disable `c-ares` support This was causing the build to fail when the `c-ares` port was installed. --- Ports/aria2/package.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Ports/aria2/package.sh b/Ports/aria2/package.sh index d215d98997..6d6e31bf53 100755 --- a/Ports/aria2/package.sh +++ b/Ports/aria2/package.sh @@ -17,4 +17,5 @@ config_sub_paths+=("deps/wslay/config.sub") configopts+=( "--with-libuv" "--with-sysroot=${SERENITY_INSTALL_ROOT}" + '--without-libcares' )