1 | #!/usr/bin/python
|
---|
2 | #
|
---|
3 | # Copyright (C) 2009 Sun Microsystems, Inc.
|
---|
4 | #
|
---|
5 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
6 | # available from http://www.virtualbox.org. This file is free software;
|
---|
7 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
8 | # General Public License (GPL) as published by the Free Software
|
---|
9 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
10 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
11 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
12 | #
|
---|
13 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
14 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
15 | # additional information or have any questions.
|
---|
16 | #
|
---|
17 |
|
---|
18 |
|
---|
19 | import os,sys
|
---|
20 |
|
---|
21 | versions = ["2.3", "2.4", "2.5", "2.6", "2.7", "2.8"]
|
---|
22 | prefixes = ["/usr", "/usr/local", "/opt", "/opt/local"]
|
---|
23 | known = {}
|
---|
24 |
|
---|
25 | def checkPair(p, v,dllpre,dllsuff, bitness_magic):
|
---|
26 | file = os.path.join(p, "include", "python"+v, "Python.h")
|
---|
27 | if not os.path.isfile(file):
|
---|
28 | return None
|
---|
29 |
|
---|
30 | lib = os.path.join(p, "lib", dllpre+"python"+v+dllsuff)
|
---|
31 |
|
---|
32 | if bitness_magic == 1:
|
---|
33 | lib64 = os.path.join(p, "lib", "64", dllpre+"python"+v+dllsuff)
|
---|
34 | elif bitness_magic == 2:
|
---|
35 | lib64 = os.path.join(p, "lib64", dllpre+"python"+v+dllsuff)
|
---|
36 | if not os.path.isfile(lib64):
|
---|
37 | lib64 = lib
|
---|
38 | else:
|
---|
39 | lib64 = None
|
---|
40 | return [os.path.join(p, "include", "python"+v),
|
---|
41 | lib,
|
---|
42 | lib64]
|
---|
43 |
|
---|
44 | def print_vars(vers, known, sep, bitness_magic):
|
---|
45 | print "VBOX_PYTHON%s_INC=%s%s" %(vers, known[0], sep)
|
---|
46 | if bitness_magic > 0:
|
---|
47 | print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[2], sep)
|
---|
48 | else:
|
---|
49 | print "VBOX_PYTHON%s_LIB=%s%s" %(vers, known[1], sep)
|
---|
50 |
|
---|
51 |
|
---|
52 | def main(argv):
|
---|
53 | dllpre = "lib"
|
---|
54 | dllsuff = ".so"
|
---|
55 | bitness_magic = 0
|
---|
56 |
|
---|
57 | if len(argv) > 1:
|
---|
58 | target = argv[1]
|
---|
59 | else:
|
---|
60 | target = sys.platform
|
---|
61 |
|
---|
62 | if len(argv) > 2:
|
---|
63 | arch = argv[2]
|
---|
64 | else:
|
---|
65 | arch = "unknown"
|
---|
66 |
|
---|
67 | if target == 'darwin':
|
---|
68 | prefixes.insert(0, '/Developer/SDKs/MacOSX10.4u.sdk/usr')
|
---|
69 | prefixes.insert(0, '/Developer/SDKs/MacOSX10.5.sdk/usr')
|
---|
70 | # Python 2.3 on Darwin buildbox is bad
|
---|
71 | # /Developer/SDKs/MacOSX10.4u.sdk/usr/include/python2.3/pyport.h:554:2: error: #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?).
|
---|
72 | versions.remove("2.3")
|
---|
73 | dllsuff = '.dylib'
|
---|
74 |
|
---|
75 | if target == 'solaris' and arch == 'amd64':
|
---|
76 | bitness_magic = 1
|
---|
77 |
|
---|
78 | if target == 'linux' and arch == 'amd64':
|
---|
79 | bitness_magic = 2
|
---|
80 |
|
---|
81 | for v in versions:
|
---|
82 | for p in prefixes:
|
---|
83 | c = checkPair(p, v, dllpre, dllsuff, bitness_magic)
|
---|
84 | if c is not None:
|
---|
85 | known[v] = c
|
---|
86 | break
|
---|
87 | keys = known.keys()
|
---|
88 | # we want default to be the lowest versioned Python
|
---|
89 | keys.sort()
|
---|
90 | d = None
|
---|
91 | # We need separator other than newline, to sneak through $(shell)
|
---|
92 | sep = "|"
|
---|
93 | for k in keys:
|
---|
94 | if d is None:
|
---|
95 | d = k
|
---|
96 | vers = k.replace('.', '')
|
---|
97 | print_vars(vers, known[k], sep, bitness_magic)
|
---|
98 | if d is not None:
|
---|
99 | print_vars("DEF", known[d], sep, bitness_magic)
|
---|
100 |
|
---|
101 | if __name__ == '__main__':
|
---|
102 | main(sys.argv)
|
---|