Bladeren bron

Update third-party libraries

Tatsuhiro Tsujikawa 9 jaren geleden
bovenliggende
commit
10e7830050
3 gewijzigde bestanden met toevoegingen van 12 en 12 verwijderingen
  1. 6 6
      Dockerfile.mingw
  2. 1 1
      README.android
  3. 5 5
      README.mingw

+ 6 - 6
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 \

+ 1 - 1
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

+ 5 - 5
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: