mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-07 15:43:55 +02:00
Set config dir for OpenSSL and disable OpenSSL DSO
System-provided engines may crash bundled OpenSSL
This commit is contained in:
parent
1008774aef
commit
b115ea74d0
1 changed files with 6 additions and 1 deletions
|
@ -424,7 +424,12 @@ RUN git clone -b OpenSSL_${OPENSSL_VER}-stable --depth=1 \
|
||||||
$GIT/openssl/openssl.git $opensslDir
|
$GIT/openssl/openssl.git $opensslDir
|
||||||
|
|
||||||
WORKDIR ${opensslDir}
|
WORKDIR ${opensslDir}
|
||||||
RUN ./config --prefix="$OPENSSL_PREFIX" no-tests
|
RUN ./config \
|
||||||
|
--prefix="$OPENSSL_PREFIX" \
|
||||||
|
--openssldir=/etc/ssl \
|
||||||
|
no-tests \
|
||||||
|
no-dso
|
||||||
|
|
||||||
RUN make -j$(nproc)
|
RUN make -j$(nproc)
|
||||||
RUN make DESTDIR="$LibrariesPath/openssl-cache" install_sw
|
RUN make DESTDIR="$LibrariesPath/openssl-cache" install_sw
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue