This repository was archived by the owner on Mar 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
tools/appserver/dockerbuild Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ export QPMX_CACHE_DIR=/tmp/qpmx-cache
66
77DS_NAME=qdsappd
88QT_VERSION=5.11.0
9- CRYPTOPP_VERSION=7_0_0
9+ CRYPTOPP_VERSION_MAJOR=7
10+ CRYPTOPP_VERSION_MINOR=0
11+ CRYPTOPP_VERSION_PATCH=0
12+ CRYPTOPP_VERSION=${CRYPTOPP_VERSION_MAJOR} _${CRYPTOPP_VERSION_MINOR} _${CRYPTOPP_VERSION_PATCH}
1013MAIN_DEP=" libressl zlib dbus-libs glib libgcc libstdc++ libpcre2-16 libpq ca-certificates eudev-libs eudev libpcre2-16"
1114DEV_DEP=" libressl-dev zlib-dev dbus-dev glib-dev perl eudev-dev gawk pcre2-dev postgresql-dev linux-headers make gcc g++ curl python3 git"
1215
@@ -94,7 +97,10 @@ CXXFLAGS="$CXXFLAGS -DNDEBUG -fPIC" make dynamic
9497make install PREFIX=" /usr"
9598install -m644 " /tmp/src/tools/appserver/dockerbuild/libcrypto++.pc" " /usr/lib/pkgconfig/libcrypto++.pc"
9699cd ..
97- ls -lsa /usr/lib/libcryptopp*
100+ CPP_PATCHV=${CRYPTOPP_VERSION_MAJOR} .${CRYPTOPP_VERSION_MINOR} .${CRYPTOPP_VERSION_PATCH}
101+ ln -s /usr/lib/libcryptopp.so.${CRYPTOPP_VERSION_MAJOR} /usr/lib/libcryptopp.so.${CPP_PATCHV}
102+ ln -s /usr/lib/libcryptopp.so.${CRYPTOPP_VERSION_MAJOR} .${CRYPTOPP_VERSION_MINOR} /usr/lib/libcryptopp.so.${CPP_PATCHV}
103+ /sbin/ldconfig -n /usr/lib
98104
99105# build messages
100106cd /tmp/src/src/messages
You can’t perform that action at this time.
0 commit comments