From 1337091a729ac6808d2359823752f216aee7f2ef Mon Sep 17 00:00:00 2001 From: dsc Date: Thu, 8 Oct 2020 23:04:54 +0200 Subject: [PATCH] =?UTF-8?q?OpenSSL=20+=20no-asm=20=3D=20bad=20idea?= =?UTF-8?q?=E2=84=A2.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7e3728f..74e39a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -119,7 +119,7 @@ RUN git clone -b v1.2.11 --depth 1 https://github.com/madler/zlib && \ make -j$THREADS && \ make -j$THREADS install -RUN git clone -b VER-2-10-2 --depth 1 https://git.sv.nongnu.org/r/freetype/freetype2.git && \ +RUN git clone -b VER-2-10-2 https://git.sv.nongnu.org/r/freetype/freetype2.git && \ cd freetype2 && \ git reset --hard 132f19b779828b194b3fede187cee719785db4d8 && \ ./autogen.sh && \ @@ -164,7 +164,7 @@ RUN wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz && \ sha256sum -c hashsum.txt && \ tar -xzf openssl-1.1.1g.tar.gz && \ cd openssl-1.1.1g && \ - CFLAGS='-fPIC' CXXFLAGS='-fPIC' ./config no-asm no-shared no-zlib-dynamic --prefix=/usr/local/openssl && \ + CFLAGS='-fPIC' CXXFLAGS='-fPIC' ./config no-shared no-zlib-dynamic --prefix=/usr/local/openssl && \ make -j$THREADS && \ make -j$THREADS install