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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
#!/usr/bin/env python
#
# gen-make.py -- generate makefiles for building Subversion
#
import os
import sys
import getopt
import ConfigParser
# for the generator modules
sys.path.insert(0, os.path.join('build', 'generator'))
# for getversion
sys.path.insert(1, 'build')
gen_modules = {
'make' : ('gen_make', 'Makefiles for POSIX systems'),
'dsp' : ('gen_msvc_dsp', 'MSVC 6.x project files'),
'vcproj' : ('gen_vcnet_vcproj', 'VC.Net project files'),
}
def main(fname, gentype, verfname=None,
skip_depends=0, other_options=None):
if verfname is None:
verfname = os.path.join('subversion', 'include', 'svn_version.h')
gen_module = __import__(gen_modules[gentype][0])
generator = gen_module.Generator(fname, verfname, other_options)
if not skip_depends:
generator.compute_hdr_deps()
generator.write()
if ('--debug', '') in other_options:
for dep_type, target_dict in generator.graph.deps.items():
sorted_targets = target_dict.keys(); sorted_targets.sort()
for target in sorted_targets:
print dep_type + ": " + _objinfo(target)
for source in target_dict[target]:
print " " + _objinfo(source)
print "=" * 72
gen_keys = generator.__dict__.keys()
gen_keys.sort()
for name in gen_keys:
value = generator.__dict__[name]
if type(value) == type([]):
print name + ": "
for i in value:
print " " + _objinfo(i)
print "=" * 72
def _objinfo(o):
if type(o) == type(''):
return repr(o)
else:
t = o.__class__.__name__
n = getattr(o, 'name', '-')
f = getattr(o, 'filename', '-')
return "%s: %s %s" % (t,n,f)
def _usage_exit():
"print usage, exit the script"
print "USAGE: gen-make.py [options...] [conf-file]"
print " -s skip dependency generation"
print " --debug print lots of stuff only developers care about"
print " --release release mode"
print " --reload reuse all options from the previous invocation"
print " of the script, except -s, -t, --debug and --reload"
print " -t TYPE use the TYPE generator; can be one of:"
items = gen_modules.items()
items.sort()
for name, (module, desc) in items:
print ' %-12s %s' % (name, desc)
print
print " The default generator type is 'make'"
print
print " Makefile-specific options:"
print
print " --assume-shared-libs"
print " omit dependencies on libraries, on the assumption that"
print " shared libraries will be built, so that it is unnecessary"
print " to relink executables when the libraries that they depend"
print " on change. This is an option for developers who want to"
print " increase the speed of frequent rebuilds."
print " *** Do not use unless you understand the consequences. ***"
print
print " Windows-specific options:"
print
print " --with-apr=DIR"
print " the APR sources are in DIR"
print
print " --with-apr-util=DIR"
print " the APR-Util sources are in DIR"
print
print " --with-apr-iconv=DIR"
print " the APR-Iconv sources are in DIR"
print
print " --with-berkeley-db=DIR"
print " look for Berkeley DB headers and libs in"
print " DIR"
print
print " --with-neon=DIR"
print " the Neon sources are in DIR"
print
print " --with-serf=DIR"
print " the Serf sources are in DIR"
print
print " --with-httpd=DIR"
print " the httpd sources and binaries required"
print " for building mod_dav_svn are in DIR;"
print " implies --with-apr{-util, -iconv}, but"
print " you can override them"
print
print " --with-libintl=DIR"
print " look for GNU libintl headers and libs in DIR;"
print " implies --enable-nls"
print
print " --with-openssl=DIR"
print " tell neon to look for OpenSSL headers"
print " and libs in DIR"
print
print " --with-zlib=DIR"
print " tell neon to look for ZLib headers and"
print " libs in DIR"
print
print " --with-junit=DIR"
print " look for the junit jar here"
print " junit is for testing the java bindings"
print
print " --with-swig=DIR"
print " look for the swig program in DIR"
print
print " --enable-pool-debug"
print " turn on APR pool debugging"
print
print " --enable-purify"
print " add support for Purify instrumentation;"
print " implies --enable-pool-debug"
print
print " --enable-quantify"
print " add support for Quantify instrumentation"
print
print " --enable-nls"
print " add support for gettext localization"
print
print " --enable-bdb-in-apr-util"
print " configure APR-Util to use Berkeley DB"
print
print " --vsnet-version=VER"
print " generate for VS.NET version VER (2002, 2003, or 2005)"
print " [only valid in combination with '-t vcproj']"
sys.exit(0)
class Options:
def __init__(self):
self.list = []
self.dict = {}
def add(self, opt, val):
if self.dict.has_key(opt):
self.list[self.dict[opt]] = (opt, val)
else:
self.dict[opt] = len(self.list)
self.list.append((opt, val))
if __name__ == '__main__':
try:
opts, args = getopt.getopt(sys.argv[1:], 'st:',
['debug',
'release',
'reload',
'assume-shared-libs',
'with-apr=',
'with-apr-util=',
'with-apr-iconv=',
'with-berkeley-db=',
'with-neon=',
'with-serf=',
'with-httpd=',
'with-libintl=',
'with-openssl=',
'with-zlib=',
'with-junit=',
'with-swig=',
'enable-pool-debug',
'enable-purify',
'enable-quantify',
'enable-nls',
'enable-bdb-in-apr-util',
'vsnet-version=',
])
if len(args) > 1:
_usage_exit()
except getopt.GetoptError:
_usage_exit()
conf = 'build.conf'
skip = 0
gentype = 'make'
rest = Options()
if args:
conf = args[0]
for opt, val in opts:
if opt == '-s':
skip = 1
elif opt == '-t':
gentype = val
elif opt == '--reload':
prev_conf = ConfigParser.ConfigParser()
prev_conf.read('gen-make.opts')
for opt, val in prev_conf.items('options'):
if opt != '--debug':
rest.add(opt, val)
del prev_conf
else:
rest.add(opt, val)
if opt == '--with-httpd':
rest.add('--with-apr', os.path.join(val, 'srclib', 'apr'))
rest.add('--with-apr-util', os.path.join(val, 'srclib', 'apr-util'))
rest.add('--with-apr-iconv', os.path.join(val, 'srclib', 'apr-iconv'))
# Remember all options so that --reload and other scripts can use them
opt_conf = open('gen-make.opts', 'w')
opt_conf.write('[options]\n')
for opt, val in rest.list:
opt_conf.write(opt + ' = ' + val + '\n')
opt_conf.close()
if gentype not in gen_modules.keys():
_usage_exit()
main(conf, gentype, skip_depends=skip, other_options=rest.list)
### End of file.
|