c-ares: move domain from haxx.se to its own .org

With c-ares release 1.18.0 the URLs were updated to c-ares.org.
Let's do the same.
This commit is contained in:
Jaap Keuter 2021-11-16 10:10:54 +01:00 committed by Wireshark GitLab Utility
parent 4f8e7f0d1c
commit 5f7806a496
3 changed files with 3 additions and 3 deletions

View File

@ -1802,7 +1802,7 @@ set_package_properties(NGHTTP2 PROPERTIES
)
set_package_properties(CARES PROPERTIES
DESCRIPTION "Library for asynchronous DNS requests"
URL "https://c-ares.haxx.se/"
URL "https://c-ares.org/"
PURPOSE "DNS name resolution for captures"
)
set_package_properties(Systemd PROPERTIES

View File

@ -151,7 +151,7 @@ C-Ares is used for asynchronous DNS resolution and lets us resolve names with a
==== Unix
If this library isn't already installed or available as a package for your
platform, you can get it at https://c-ares.haxx.se/[].
platform, you can get it at https://c-ares.org/[].
[[ChLibsWin32Cares]]

View File

@ -1913,7 +1913,7 @@ uninstall_maxminddb() {
install_c_ares() {
if [ "$CARES_VERSION" -a ! -f c-ares-$CARES_VERSION-done ] ; then
echo "Downloading, building, and installing C-Ares API:"
[ -f c-ares-$CARES_VERSION.tar.gz ] || curl -L -O https://c-ares.haxx.se/download/c-ares-$CARES_VERSION.tar.gz || exit 1
[ -f c-ares-$CARES_VERSION.tar.gz ] || curl -L -O https://c-ares.org/download/c-ares-$CARES_VERSION.tar.gz || exit 1
$no_build && echo "Skipping installation" && return
gzcat c-ares-$CARES_VERSION.tar.gz | tar xf - || exit 1
cd c-ares-$CARES_VERSION