Skip to content

Commit

Permalink
Update binary build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Jan 16, 2017
1 parent 6625f8c commit 7cd9285
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Dockerfile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ RUN apt-get update && \
pkg-config git curl dpkg-dev gcc-mingw-w64 \
autopoint libcppunit-dev libxml2-dev libgcrypt11-dev lzip

RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.1.1.tar.lz && \
RUN curl -L -O https://gmplib.org/download/gmp/gmp-6.1.2.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-3150200.tar.gz && \
curl -L -O http://zlib.net/zlib-1.2.8.tar.xz && \
curl -L -O https://www.sqlite.org/2017/sqlite-autoconf-3160200.tar.gz && \
curl -L -O http://zlib.net/zlib-1.2.11.tar.gz && \
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.8.0.tar.gz

RUN tar xf gmp-6.1.1.tar.lz && \
cd gmp-6.1.1 && \
RUN tar xf gmp-6.1.2.tar.lz && \
cd gmp-6.1.2 && \
./configure \
--disable-shared \
--enable-static \
Expand All @@ -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-3150200.tar.gz && \
cd sqlite-autoconf-3150200 && \
RUN tar xf sqlite-autoconf-3160200.tar.gz && \
cd sqlite-autoconf-3160200 && \
./configure \
--disable-shared \
--enable-static \
Expand All @@ -67,8 +67,8 @@ RUN tar xf sqlite-autoconf-3150200.tar.gz && \
--build=`dpkg-architecture -qDEB_BUILD_GNU_TYPE` && \
make install

RUN tar xf zlib-1.2.8.tar.xz && \
cd zlib-1.2.8 && \
RUN tar xf zlib-1.2.11.tar.gz && \
cd zlib-1.2.11 && \
CC=$HOST-gcc \
AR=$HOST-ar \
LD=$HOST-ld \
Expand Down
2 changes: 1 addition & 1 deletion README.android
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The following libraries were statically linked.

* openssl 1.0.2j
* expat 2.2.0
* zlib 1.2.8
* zlib 1.2.11
* c-ares 1.12.0
* libssh2 1.8.0

Expand Down
6 changes: 3 additions & 3 deletions README.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Debian Linux.
The executable is statically linked, so no extra DLLs are
necessary. The linked libraries are:

* gmp 6.1.1
* gmp 6.1.2
* expat 2.2.0
* sqlite 3.15.2
* zlib 1.2.8
* sqlite 3.16.2
* zlib 1.2.11
* c-ares 1.12.0
* libssh2 1.8.0

Expand Down

0 comments on commit 7cd9285

Please sign in to comment.