forked from cory/tildefriends
mingw64 OpenSSL => 3.1.4.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4581 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
59
tools/ssl-mingw64
Executable file
59
tools/ssl-mingw64
Executable file
@ -0,0 +1,59 @@
|
||||
#!/bin/sh
|
||||
|
||||
OPENSSL_VERSION=3.1.4
|
||||
|
||||
API_LEVEL=24
|
||||
|
||||
BUILD_DIR=out/openssl_mingw64_build
|
||||
|
||||
BUILD_TARGETS="mingw64"
|
||||
|
||||
rm -rfv openssl-${OPENSSL_VERSION}
|
||||
|
||||
if [ ! -d openssl-${OPENSSL_VERSION} ]
|
||||
then
|
||||
if [ ! -f openssl-${OPENSSL_VERSION}.tar.gz ]
|
||||
then
|
||||
wget https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz || exit 128
|
||||
fi
|
||||
tar xzf openssl-${OPENSSL_VERSION}.tar.gz || exit 128
|
||||
fi
|
||||
WORK_DIR=openssl-${OPENSSL_VERSION}
|
||||
|
||||
##### build-function #####
|
||||
build_the_thing() {
|
||||
export GLOBAL_OPTIONS="no-trace no-asm no-threads no-md2 no-md4 no-dso no-async no-multiblock no-dgram no-filenames no-shared no-ssl3 no-engine no-dynamic-engine no-zlib no-comp no-psk no-idea no-srp no-weak-ssl-ciphers no-dtls no-egd no-tests -Os"
|
||||
echo "./Configure $SSL_TARGET $OPTIONS $GLOBAL_OPTIONS" && \
|
||||
./Configure $SSL_TARGET $OPTIONS $GLOBAL_OPTIONS && \
|
||||
make clean && \
|
||||
make build_generated && \
|
||||
make libcrypto.a libssl.a || exit 128
|
||||
}
|
||||
|
||||
##### set variables according to build-tagret #####
|
||||
for build_target in $BUILD_TARGETS
|
||||
do
|
||||
echo "Building $build_target"
|
||||
cd $WORK_DIR || exit 128
|
||||
|
||||
case $build_target in
|
||||
mingw64)
|
||||
OPTIONS="--cross-compile-prefix=x86_64-w64-mingw32-"
|
||||
DESTDIR="/tmp/$BUILD_DIR/mingw64"
|
||||
SSL_TARGET="mingw64"
|
||||
;;
|
||||
esac
|
||||
|
||||
rm -rf $DESTDIR
|
||||
build_the_thing
|
||||
cd ..
|
||||
#### copy libraries and includes to output-directory #####
|
||||
echo WORK_DIR=$WORK_DIR
|
||||
rm -rf deps/openssl/$build_target/
|
||||
mkdir -p deps/openssl/$build_target/usr/local/include
|
||||
mkdir -p deps/openssl/$build_target/usr/local/lib/
|
||||
cp -R $WORK_DIR/include/* deps/openssl/$build_target/usr/local/include/
|
||||
cp $WORK_DIR/*.a deps/openssl/$build_target/usr/local/lib/
|
||||
done
|
||||
|
||||
echo Success
|
Reference in New Issue
Block a user