summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorSara Golemon <sara.golemon@mongodb.com>2020-05-04 18:42:16 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-04 23:40:46 +0000
commit066c614a5672d63f4127752da2befc7477780320 (patch)
tree8ae50b924dd31484228d7c97b85c88855a1bf89c /buildscripts
parent95aa86755151a0d914700c110111b488e45d44c5 (diff)
downloadmongo-066c614a5672d63f4127752da2befc7477780320.tar.gz
SERVER-47685 Remove fetch_and_build_openssl.sh
(cherry picked from commit f49817283643d6ba10be35e6dc48a8f513e8f058)
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/fetch_and_build_openssl.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/buildscripts/fetch_and_build_openssl.sh b/buildscripts/fetch_and_build_openssl.sh
deleted file mode 100755
index c1a213744f6..00000000000
--- a/buildscripts/fetch_and_build_openssl.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-set -o errexit
-#set -o verbose
-
-if [ $# -ne 3 ]; then
- echo "Arguments: <python command> <make flags> <config flags>" >&2
- exit 3
-fi
-
-PYTHON="$1" # not needed anymore
-OPENSSL_MAKE_FLAGS="$2"
-OPENSSL_CONFIG_FLAGS="$3"
-
-OPENSSL_VERSION=1.1.1e
-OPENSSL_NAME=openssl-${OPENSSL_VERSION}
-OPENSSL_TARBALL=${OPENSSL_NAME}.tar.gz
-
-basedir="$(pwd)"
-
-mkdir -p openssl
-pushd openssl
-curl -L -o ${OPENSSL_TARBALL} \
- "https://s3.amazonaws.com/boxes.10gen.com/build/${OPENSSL_TARBALL}"
-
-# To regenerate: shasum -a 256 -b $OPENSSL_TARBALL
-shasum -c /dev/fd/0 <<EOF || exit 3
-694f61ac11cb51c9bf73f54e771ff6022b0327a43bbdfa1b2f19de1662a6dcbe *$OPENSSL_TARBALL
-EOF
-
-tar -xzf ${OPENSSL_TARBALL}
-
-mkdir -p build
-pushd build
-../$OPENSSL_NAME/config no-shared --prefix="$basedir/openssl_install_dir" ${OPENSSL_CONFIG_FLAGS}
-make ${OPENSSL_MAKE_FLAGS}
-make install_sw
-popd # build
-
-popd # openssl