diff options
author | James Yonan <james@openvpn.net> | 2010-04-22 12:53:31 +0000 |
---|---|---|
committer | James Yonan <james@openvpn.net> | 2010-04-22 12:53:31 +0000 |
commit | 059739e9341781d9019e07fc5119367c1630b012 (patch) | |
tree | 6839d8071558539505991895ef377baee58e960f /win/config_tap.py | |
parent | Minor change to doclean script: (diff) | |
download | openvpn-059739e9341781d9019e07fc5119367c1630b012.tar.xz |
Added Python-based build system for Windows in
win directory.
Fixed minor issue in TAP driver DEBUG builds where
non-null-terminated unicode strings were being
printed incorrectly.
Version 2.1.1g
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5577 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'win/config_tap.py')
-rw-r--r-- | win/config_tap.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/win/config_tap.py b/win/config_tap.py new file mode 100644 index 0000000..e69ee9b --- /dev/null +++ b/win/config_tap.py @@ -0,0 +1,35 @@ +import os
+from wb import preprocess, home_fn, autogen, dict_def
+
+def main(config):
+ preprocess(config,
+ in_fn=home_fn('tap-win32/SOURCES.in'),
+ out_fn=home_fn('tap-win32/SOURCES'),
+ quote_begin='@@',
+ quote_end='@@',
+ head_comment='# %s\n\n' % autogen)
+
+ preprocess(config,
+ in_fn=home_fn('tap-win32/i386/OemWin2k.inf.in'),
+ out_fn=home_fn('tap-win32/i386/OemWin2k.inf'),
+ quote_begin='@@',
+ quote_end='@@',
+ if_prefix='!',
+ head_comment='; %s\n\n' % autogen)
+
+ try:
+ os.mkdir(home_fn('tap-win32/amd64'))
+ except:
+ pass
+ preprocess(dict_def(config, [('AMD64', '1')]),
+ in_fn=home_fn('tap-win32/i386/OemWin2k.inf.in'),
+ out_fn=home_fn('tap-win32/amd64/OemWin2k.inf'),
+ quote_begin='@@',
+ quote_end='@@',
+ if_prefix='!',
+ head_comment='; %s\n\n' % autogen)
+
+# if we are run directly, and not loaded as a module
+if __name__ == "__main__":
+ from wb import config
+ main(config)
|