mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

Windows, where sending a set of several commands to the management interface in quick succession might cause the latter commands in the set to be ignored. Increased management interface input command buffer size from 256 to 1024 bytes. Minor tweaks to Windows build system. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4414 e7ae566f-a301-0410-adde-c780ea21d3b5
23 lines
471 B
Bash
23 lines
471 B
Bash
#!/bin/sh
|
|
|
|
# Get and sign the OpenVPN GUI
|
|
|
|
# load version.nsi definitions
|
|
. autodefs/defs.sh
|
|
|
|
GUI="$OPENVPN_GUI_DIR/$OPENVPN_GUI"
|
|
|
|
if [ -f "$GUI" ]; then
|
|
mkdir -p $GENOUT/bin &>/dev/null
|
|
cp $GUI $GENOUT/bin
|
|
if [ -d "$SIGNTOOL" ]; then
|
|
TARGET_EXE="$GENOUT/bin/$OPENVPN_GUI" $SIGNTOOL/signexe
|
|
fi
|
|
fi
|
|
|
|
if [ -f "$GENOUT/bin/$OPENVPN_GUI" ]; then
|
|
echo '!define OPENVPN_GUI_DEFINED' >autodefs/guidefs.nsi
|
|
else
|
|
cat /dev/null >autodefs/guidefs.nsi
|
|
fi
|