Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2018-11-11 18:40:08 +0300
committerPhilipp Hörist <philipp@hoerist.com>2018-11-13 23:58:32 +0300
commit19a46070fafae21f7e4fba56476a7d03a9d7f97d (patch)
tree91cf3a7331c135800b7039c72008baafdec34836 /win
parent2c2943deff8b9e5abf61371244395640a6df97e1 (diff)
Windows: Remove old ssl fix
Diffstat (limited to 'win')
-rw-r--r--win/_base.sh13
-rw-r--r--win/build.sh2
2 files changed, 0 insertions, 15 deletions
diff --git a/win/_base.sh b/win/_base.sh
index b13e099d9..b3e3c0c69 100644
--- a/win/_base.sh
+++ b/win/_base.sh
@@ -302,19 +302,6 @@ function cleanup_install {
}
-function download_ssl_libs {
- # Python needs these ssl libs but msys does not provide them
- curl -o "${BUILD_ROOT}"/ssl.zip https://gajim.org/downloads/snap/win/build/ssl.zip
- 7z x -o"${MINGW_ROOT}"/bin "${BUILD_ROOT}"/ssl.zip
-}
-
-function move_ssl_libs {
- # Pythons ssl module searches in that path for these dlls, if they are not there
- # C:/Windows/system32 is searcherd and potentially wrong versioned dlls are found there
- cp "${MINGW_ROOT}"/bin/libeay32.dll "${MINGW_ROOT}"/lib/python3.7/lib-dynload/libeay32.dll
- cp "${MINGW_ROOT}"/bin/ssleay32.dll "${MINGW_ROOT}"/lib/python3.7/lib-dynload/ssleay32.dll
-}
-
function build_installer {
(cd "$BUILD_ROOT" && makensis -NOCD -DVERSION="$QL_VERSION_DESC" -DARCH="${MINGW}" "${MISC}"/gajim.nsi)
(cd "$BUILD_ROOT" && makensis -NOCD -DVERSION="$QL_VERSION_DESC" -DARCH="${MINGW}" "${MISC}"/gajim-portable.nsi)
diff --git a/win/build.sh b/win/build.sh
index 729c548e6..b77134680 100644
--- a/win/build.sh
+++ b/win/build.sh
@@ -17,8 +17,6 @@ function main {
install_deps
install_gajim
cleanup_install
- download_ssl_libs
- move_ssl_libs
build_installer
}