Explorar el Código

Update binary build dependencies

Tatsuhiro Tsujikawa hace 8 años
padre
commit
7cd9285085
Se han modificado 3 ficheros con 13 adiciones y 13 borrados
  1. 9 9
      Dockerfile.mingw
  2. 1 1
      README.android
  3. 3 3
      README.mingw

+ 9 - 9
Dockerfile.mingw

@@ -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 \
@@ -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 \
@@ -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 \

+ 1 - 1
README.android

@@ -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
 

+ 3 - 3
README.mingw

@@ -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