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_ti.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 '')
-rw-r--r-- | win/config_ti.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/config_ti.py b/win/config_ti.py new file mode 100644 index 0000000..4facaff --- /dev/null +++ b/win/config_ti.py @@ -0,0 +1,18 @@ +import os, shutil
+from wb import preprocess, home_fn, autogen
+
+def main(config):
+ src = os.path.join(home_fn(config['TISRC']), config['DDKVER_MAJOR'])
+ dest = home_fn('tapinstall')
+ shutil.rmtree(dest, ignore_errors=True)
+ shutil.copytree(src, dest)
+ preprocess(config,
+ in_fn=os.path.join(dest, 'sources.in'),
+ out_fn=os.path.join(dest, 'sources'),
+ 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)
|