File tree Expand file tree Collapse file tree 2 files changed +17
-16
lines changed Expand file tree Collapse file tree 2 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RUN apt-get update && apt-get -y dist-upgrade && apt-get -y --no-install-recomme
24
24
build-essential \
25
25
pkg-config \
26
26
libgl1-mesa-dev \
27
- libssl -dev \
27
+ libssl1.0 -dev \
28
28
# git is needed to build openssl in older versions
29
29
git \
30
30
# xcb dependencies
Original file line number Diff line number Diff line change 1
1
#! /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
You can’t perform that action at this time.
0 commit comments