mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Update third-party libs used for binary distributions
This commit is contained in:
parent
f7eeb74304
commit
b5bab4097d
3 changed files with 15 additions and 15 deletions
|
@ -27,15 +27,15 @@ RUN apt-get install -y make binutils autoconf automake autotools-dev libtool \
|
||||||
pkg-config git curl dpkg-dev gcc-mingw-w64 \
|
pkg-config git curl dpkg-dev gcc-mingw-w64 \
|
||||||
autopoint libcppunit-dev libxml2-dev libgcrypt11-dev lzip
|
autopoint libcppunit-dev libxml2-dev libgcrypt11-dev lzip
|
||||||
|
|
||||||
RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.0.0a.tar.lz
|
RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.1.0.tar.lz
|
||||||
RUN curl -L -O http://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tar.gz
|
RUN curl -L -O http://downloads.sourceforge.net/project/expat/expat/2.1.0/expat-2.1.0.tar.gz
|
||||||
RUN curl -L -O http://www.sqlite.org/2015/sqlite-autoconf-3080803.tar.gz
|
RUN curl -L -O http://www.sqlite.org/2015/sqlite-autoconf-3100200.tar.gz
|
||||||
RUN curl -L -O http://zlib.net/zlib-1.2.8.tar.xz
|
RUN curl -L -O http://zlib.net/zlib-1.2.8.tar.xz
|
||||||
RUN curl -L -O http://c-ares.haxx.se/download/c-ares-1.10.0.tar.gz
|
RUN curl -L -O http://c-ares.haxx.se/download/c-ares-1.10.0.tar.gz
|
||||||
RUN curl -L -O http://libssh2.org/download/libssh2-1.5.0.tar.gz
|
RUN curl -L -O http://libssh2.org/download/libssh2-1.6.0.tar.gz
|
||||||
|
|
||||||
RUN tar xf gmp-6.0.0a.tar.lz
|
RUN tar xf gmp-6.1.0.tar.lz
|
||||||
RUN cd gmp-6.0.0 && \
|
RUN cd gmp-6.1.0 && \
|
||||||
./configure \
|
./configure \
|
||||||
--disable-shared \
|
--disable-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
|
@ -56,8 +56,8 @@ RUN cd expat-2.1.0 && \
|
||||||
--build=`dpkg-architecture -qDEB_BUILD_GNU_TYPE` && \
|
--build=`dpkg-architecture -qDEB_BUILD_GNU_TYPE` && \
|
||||||
make install
|
make install
|
||||||
|
|
||||||
RUN tar xf sqlite-autoconf-3080803.tar.gz
|
RUN tar xf sqlite-autoconf-3100200.tar.gz
|
||||||
RUN cd sqlite-autoconf-3080803 && \
|
RUN cd sqlite-autoconf-3100200 && \
|
||||||
./configure \
|
./configure \
|
||||||
--disable-shared \
|
--disable-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
|
@ -92,8 +92,8 @@ RUN cd c-ares-1.10.0 && \
|
||||||
LIBS="-lws2_32" && \
|
LIBS="-lws2_32" && \
|
||||||
make install
|
make install
|
||||||
|
|
||||||
RUN tar xf libssh2-1.5.0.tar.gz
|
RUN tar xf libssh2-1.6.0.tar.gz
|
||||||
RUN cd libssh2-1.5.0 && \
|
RUN cd libssh2-1.6.0 && \
|
||||||
./configure \
|
./configure \
|
||||||
--disable-shared \
|
--disable-shared \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
|
|
|
@ -42,7 +42,7 @@ aria2c executable was generated using android-ndk-r10d.
|
||||||
|
|
||||||
The following libraries were statically linked.
|
The following libraries were statically linked.
|
||||||
|
|
||||||
* openssl 1.0.2e
|
* openssl 1.0.2f
|
||||||
* expat 2.1.0
|
* expat 2.1.0
|
||||||
* c-ares 1.10.0
|
* c-ares 1.10.0
|
||||||
* libssh2 1.6.0
|
* libssh2 1.6.0
|
||||||
|
|
10
README.mingw
10
README.mingw
|
@ -5,16 +5,16 @@ aria2 Windows build is provided in 2 flavors: 32bit version and 64bit
|
||||||
version. The executable was compiled using mingw-w64 cross compiler on
|
version. The executable was compiled using mingw-w64 cross compiler on
|
||||||
Debian Linux.
|
Debian Linux.
|
||||||
|
|
||||||
* gcc-mingw-w64 4.9.2-21+15.4
|
* gcc-mingw-w64 5.2.1-26+16
|
||||||
* binutils-mingw-w64-i686 2.25-8+6.2
|
* binutils-mingw-w64-i686 2.25.90.20151209-1+6.5+b1
|
||||||
* binutils-mingw-w64-x86-64 2.25-8+6.2
|
* binutils-mingw-w64-x86-64 2.25.90.20151209-1+6.5+b1
|
||||||
|
|
||||||
The executable is statically linked, so no extra DLLs are
|
The executable is statically linked, so no extra DLLs are
|
||||||
necessary. The linked libraries are:
|
necessary. The linked libraries are:
|
||||||
|
|
||||||
* gmp 6.0.0
|
* gmp 6.1.0
|
||||||
* expat 2.1.0
|
* expat 2.1.0
|
||||||
* sqlite 3.8.11.1
|
* sqlite 3.10.2
|
||||||
* zlib 1.2.8
|
* zlib 1.2.8
|
||||||
* c-ares 1.10.0 with the dns.patch [1] applied
|
* c-ares 1.10.0 with the dns.patch [1] applied
|
||||||
* libssh2 1.6.0
|
* libssh2 1.6.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue