Skip to content

Commit 70d6cff

Browse files
trying with system ssl 1.0
1 parent 7ba03ca commit 70d6cff

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y --no-install-recomme
2424
build-essential \
2525
pkg-config \
2626
libgl1-mesa-dev \
27-
libssl-dev \
27+
libssl1.0-dev \
2828
# git is needed to build openssl in older versions
2929
git \
3030
# xcb dependencies

buildconfig/configure-5.6.0.sh

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
#!/bin/sh
2-
set -e
3-
set -x
4-
CORE_COUNT=$1
5-
# adding compatible ssl version
6-
git clone https://github.com/openssl/openssl.git
7-
cd openssl
8-
git checkout OpenSSL_1_0_1-stable
9-
LATEST_TAG=$(git describe --match "OpenSSL_1_0_1[a-z]*" --abbrev=0)
10-
git checkout $LATEST_TAG
11-
./config --prefix=/opt/openssl_build_stable -shared > /dev/null 2>&1 || ./config --prefix=/opt/openssl_build_stable -shared
12-
make -j$CORE_COUNT > /dev/null 2>&1 || make -j$CORE_COUNT
13-
make -j$CORE_COUNT test > /dev/null 2>&1 || make -j$CORE_COUNT test
14-
make install > /dev/null 2>&1 || make install
15-
cd ..
16-
OPENSSL_LIBS='-L/opt/openssl_build_stable/lib -lssl -lcrypto' ../configure -prefix $QT_PREFIX -opensource -confirm-license -nomake examples -nomake tests -qt-xcb -openssl-linked -I /opt/openssl_build_stable/include/openssl -L /opt/openssl_build_stable/lib
2+
# set -e
3+
# set -x
4+
# CORE_COUNT=$1
5+
# # adding compatible ssl version
6+
# git clone https://github.com/openssl/openssl.git
7+
# cd openssl
8+
# git checkout OpenSSL_1_0_1-stable
9+
# LATEST_TAG=$(git describe --match "OpenSSL_1_0_1[a-z]*" --abbrev=0)
10+
# git checkout $LATEST_TAG
11+
# ./config --prefix=/opt/openssl_build_stable -shared > /dev/null 2>&1 || ./config --prefix=/opt/openssl_build_stable -shared
12+
# make -j$CORE_COUNT > /dev/null 2>&1 || make -j$CORE_COUNT
13+
# make -j$CORE_COUNT test > /dev/null 2>&1 || make -j$CORE_COUNT test
14+
# make install > /dev/null 2>&1 || make install
15+
# cd ..
16+
# OPENSSL_LIBS='-L/opt/openssl_build_stable/lib -lssl -lcrypto' ../configure -prefix $QT_PREFIX -opensource -confirm-license -nomake examples -nomake tests -qt-xcb -openssl-linked -I /opt/openssl_build_stable/include/openssl -L /opt/openssl_build_stable/lib
17+
../configure -prefix $QT_PREFIX -opensource -confirm-license -nomake examples -nomake tests -qt-xcb

0 commit comments

Comments
 (0)