From 10e7830050abf8b104a30ff3c6c323bf02a0c0f2 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 15 Nov 2016 22:54:06 +0900 Subject: [PATCH] Update third-party libraries --- Dockerfile.mingw | 12 ++++++------ README.android | 2 +- README.mingw | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Dockerfile.mingw b/Dockerfile.mingw index 3812367f..082eae52 100644 --- a/Dockerfile.mingw +++ b/Dockerfile.mingw @@ -30,10 +30,10 @@ RUN apt-get update && \ RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.1.1.tar.lz && \ curl -L -O http://downloads.sourceforge.net/project/expat/expat/2.2.0/expat-2.2.0.tar.bz2 && \ - curl -L -O https://www.sqlite.org/2016/sqlite-autoconf-3150000.tar.gz && \ + curl -L -O https://www.sqlite.org/2016/sqlite-autoconf-3150100.tar.gz && \ curl -L -O http://zlib.net/zlib-1.2.8.tar.xz && \ curl -L -O https://c-ares.haxx.se/download/c-ares-1.12.0.tar.gz && \ - curl -L -O http://libssh2.org/download/libssh2-1.7.0.tar.gz + curl -L -O http://libssh2.org/download/libssh2-1.8.0.tar.gz RUN tar xf gmp-6.1.1.tar.lz && \ cd gmp-6.1.1 && \ @@ -57,8 +57,8 @@ RUN tar xf expat-2.2.0.tar.bz2 && \ --build=`dpkg-architecture -qDEB_BUILD_GNU_TYPE` && \ make install -RUN tar xf sqlite-autoconf-3150000.tar.gz && \ - cd sqlite-autoconf-3150000 && \ +RUN tar xf sqlite-autoconf-3150100.tar.gz && \ + cd sqlite-autoconf-3150100 && \ ./configure \ --disable-shared \ --enable-static \ @@ -93,8 +93,8 @@ RUN tar xf c-ares-1.12.0.tar.gz && \ LIBS="-lws2_32" && \ make install -RUN tar xf libssh2-1.7.0.tar.gz && \ - cd libssh2-1.7.0 && \ +RUN tar xf libssh2-1.8.0.tar.gz && \ + cd libssh2-1.8.0 && \ ./configure \ --disable-shared \ --enable-static \ diff --git a/README.android b/README.android index b6e9458d..04691b93 100644 --- a/README.android +++ b/README.android @@ -45,7 +45,7 @@ The following libraries were statically linked. * openssl 1.0.2j * expat 2.2.0 * c-ares 1.12.0 -* libssh2 1.7.0 +* libssh2 1.8.0 Since Android does not have ``/etc/resolv.conf``, c-ares (asynchronous DNS resolver) is disabled by default. But name resolution is sometimes diff --git a/README.mingw b/README.mingw index 1d2218b2..67bc6b5c 100644 --- a/README.mingw +++ b/README.mingw @@ -5,19 +5,19 @@ aria2 Windows build is provided in 2 flavors: 32bit version and 64bit version. The executable was compiled using mingw-w64 cross compiler on Debian Linux. -* gcc-mingw-w64 5.2.1-26+16 -* binutils-mingw-w64-i686 2.25.90.20151209-1+6.5+b1 -* binutils-mingw-w64-x86-64 2.25.90.20151209-1+6.5+b1 +* gcc-mingw-w64 6.1.1-12+19.1 +* binutils-mingw-w64-i686 2.27-8+7.1 +* binutils-mingw-w64-x86-64 2.27-8+7.1 The executable is statically linked, so no extra DLLs are necessary. The linked libraries are: * gmp 6.1.1 * expat 2.2.0 -* sqlite 3.15.0 +* sqlite 3.15.1 * zlib 1.2.8 * c-ares 1.12.0 -* libssh2 1.7.0 +* libssh2 1.8.0 This build has the following difference from the original release: