summaryrefslogtreecommitdiff
path: root/macosx-setup.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-09-29 08:33:24 -0700
committerGerald Combs <gerald@wireshark.org>2016-09-29 17:32:20 +0000
commit5f69295c47a9a72ae27d8404860ab8170591cb1d (patch)
tree1c78289da5e6a91f25593f2cb1195bbb34917b5e /macosx-setup.sh
parentd86214e86737967765238409bd260162d313f15f (diff)
downloadwireshark-5f69295c47a9a72ae27d8404860ab8170591cb1d.tar.gz
macosx-setup: Upgrade c-ares to 1.12.0.
Change the download protocol to https as well. Change-Id: Id2043141d3b89449f2a0c739c05142af0a7b46ba Reviewed-on: https://code.wireshark.org/review/17983 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'macosx-setup.sh')
-rwxr-xr-xmacosx-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh
index d2939f45a2..d86584c0a7 100755
--- a/macosx-setup.sh
+++ b/macosx-setup.sh
@@ -134,7 +134,7 @@ PORTAUDIO_VERSION=pa_stable_v19_20111121
#
GEOIP_VERSION=1.4.8
-CARES_VERSION=1.10.0
+CARES_VERSION=1.12.0
LIBSSH_VERSION=0.7.2
@@ -1400,7 +1400,7 @@ uninstall_geoip() {
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 http://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.haxx.se/download/c-ares-$CARES_VERSION.tar.gz || exit 1
gzcat c-ares-$CARES_VERSION.tar.gz | tar xf - || exit 1
cd c-ares-$CARES_VERSION
CFLAGS="$CFLAGS $VERSION_MIN_FLAGS $SDKFLAGS" CXXFLAGS="$CXXFLAGS $VERSION_MIN_FLAGS $SDKFLAGS" LDFLAGS="$LDFLAGS $VERSION_MIN_FLAGS $SDKFLAGS" ./configure || exit 1