diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-03-06 06:48:09 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-03-06 06:48:09 +0000 |
commit | f9ad66c789308d99576ca5d28b1bedf973957ab2 (patch) | |
tree | 2bd88a8bf758ac32c8e8e85bfdeb2cd068626536 /install-win32/openvpn.nsi | |
parent | Allow installation of TAP-Win64 (diff) | |
download | openvpn-f9ad66c789308d99576ca5d28b1bedf973957ab2.tar.xz |
Changes to Windows build environment, to allow straightforward building
directly from an svn checkout or export.
install-win32/version.nsi contains high-level version info.
The script install-win32/winconfig should be run initially to set up
build configuration files.
Then make can be executed as such:
. autodefs/nsidefs.sh
make -f makefile.w32 -j 2
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1757 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rwxr-xr-x | install-win32/openvpn.nsi (renamed from install-win32/openvpn.nsi.in) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install-win32/openvpn.nsi.in b/install-win32/openvpn.nsi index 298046e..2ab2f54 100755 --- a/install-win32/openvpn.nsi.in +++ b/install-win32/openvpn.nsi @@ -7,6 +7,7 @@ ; OpenVPN install script for Windows, using NSIS +!include "version.nsi" !include "MUI.nsh" !include "setpath.nsi" !include "GetWindowsVersion.nsi" @@ -15,7 +16,7 @@ !define BIN "${HOME}\bin" !define PRODUCT_NAME "OpenVPN" -!define VERSION "@VERSION@" # AUTO_VERSION +!define VERSION "${PRODUCT_VERSION}" !define TAP "tap0901" !define TAPDRV "${TAP}.sys" |