openvpn/install-win32/getopenssl
james d0b4271b20 In Windows build, package a statically linked openssl.exe to work around
observed instabilities in the dynamic build since the migration to
OpenSSL 0.9.8h.


git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3149 e7ae566f-a301-0410-adde-c780ea21d3b5
2008-07-31 22:03:38 +00:00

20 lines
460 B
Bash

#!/bin/sh
# get version.nsi definitions
. autodefs/defs.sh
# Get OpenSSL binaries
if [ -d "$OPENSSL_DIR" ] ; then
mkdir -p $GENOUT/lib &>/dev/null
mkdir -p $GENOUT/bin &>/dev/null
for f in libeay32.dll libssl32.dll out/openssl.exe ; do
cp $OPENSSL_DIR/$f $GENOUT/lib
if [ -z "$NO_STRIP" ]; then
strip $GENOUT/lib/$f
fi
done
mv $GENOUT/lib/openssl.exe $GENOUT/bin
else
echo OpenSSL DIR $OPENSSL_DIR NOT FOUND
fi