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/winconfig | |
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 '')
-rw-r--r-- | install-win32/winconfig | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/install-win32/winconfig b/install-win32/winconfig new file mode 100644 index 0000000..01deebd --- /dev/null +++ b/install-win32/winconfig @@ -0,0 +1,27 @@ +#!/bin/sh + +# prepare files for building on Windows +# run from top directory: install-win32/winconfig + +c=`pwd` + +rm -rf autodefs +mkdir autodefs + +TRAN="perl install-win32/nsitran.pl" +VER=install-win32/version.nsi +MACRO="perl install-win32/macro.pl $HSV" +PATCH="/tmp/p.exe" + +cp `which patch` $PATCH + +$TRAN c <$VER >autodefs/nsidefs.h +$TRAN sh <$VER >autodefs/nsidefs.sh + +$MACRO $VER <tap-win32/SOURCES.in >tap-win32/SOURCES +$MACRO $VER <tap-win32/i386/OemWin2k.inf.in >tap-win32/i386/OemWin2k.inf +rm -rf tap-win32/amd64 +mkdir tap-win32/amd64 +cp tap-win32/i386/OemWin2k.inf tap-win32/amd64 +cd tap-win32/amd64 +$PATCH <../inf64.patch |