1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
import getopt, sys
from config_all import main as config_all
from build import main as build_openvpn
from build_ddk import main as build_ddk
from make_dist import main as make_dist
def Usage():
'''Show usage information'''
print "Usage: build_all.py [OPTIONS]..."
print "Build OpenVPN using Visual Studio tools"
print
print " -h, --help Show this help"
print " -u, --unsigned Do not sign the TAP drivers"
sys.exit(1)
def main(config):
# Do a signed build by default
signedBuild=True
# Parse the command line argument(s)
try:
opts, args = getopt.getopt(sys.argv[1:], "hu", ["help", "unsigned"])
except getopt.GetoptError:
Usage()
for o, a in opts:
if o in ("-h","--help"):
Usage()
if o in ("-u", "--unsigned"):
signedBuild=False
# Check if the SignTool module is present. This avoids ImportErrors popping
# up annoyingly _after_ the build.
if signedBuild:
try:
from signtool import SignTool
except (ImportError):
print "ERROR: SignTool python module not found! Can't do a signed build."
sys.exit(1)
else:
print "Doing an unsigned build as requested"
# Start the build
config_all(config)
build_openvpn()
build_ddk(config, 'tap', 'all')
build_ddk(config, 'tapinstall', 'all')
if signedBuild:
sign(config, 'all')
make_dist(config)
# if we are run directly, and not loaded as a module
if __name__ == "__main__":
from wb import config
main(config)
|