]> git.saurik.com Git - wxWidgets.git/blame - wxPython/config.py
code cleanup in DrawTextRectangle()
[wxWidgets.git] / wxPython / config.py
CommitLineData
1128a89b
RD
1#----------------------------------------------------------------------
2# Name: wx.build.config
3# Purpose: Most of the contents of this module used to be located
4# in wxPython's setup.py script. It was moved here so
5# it would be installed with the rest of wxPython and
6# could therefore be used by the setup.py for other
7# projects that needed this same info and functionality
8# (most likely in order to be compatible with wxPython.)
9#
10# This split from setup.py is still fairly rough, and
11# some things may still get shuffled back and forth,
12# refactored, etc. Please send me any comments and
13# suggestions about this.
14#
15# Author: Robin Dunn
16#
17# Created: 23-March-2004
18# RCS-ID: $Id$
19# Copyright: (c) 2004 by Total Control Software
20# Licence: wxWindows license
21#----------------------------------------------------------------------
22
23import sys, os, glob, fnmatch, tempfile
24from distutils.core import setup, Extension
25from distutils.file_util import copy_file
26from distutils.dir_util import mkpath
27from distutils.dep_util import newer
28from distutils.spawn import spawn
29
d48c1c64 30import distutils.command.install
1128a89b
RD
31import distutils.command.install_data
32import distutils.command.install_headers
33import distutils.command.clean
34
35#----------------------------------------------------------------------
36# flags and values that affect this script
37#----------------------------------------------------------------------
38
39VER_MAJOR = 2 # The first three must match wxWidgets
fbc661d0
KO
40VER_MINOR = 7
41VER_RELEASE = 0
42VER_SUBREL = 0 # wxPython release num for x.y.z release of wxWidgets
063c96c1 43VER_FLAGS = "pre" # release flags, such as prerelease or RC num, etc.
1128a89b
RD
44
45DESCRIPTION = "Cross platform GUI toolkit for Python"
46AUTHOR = "Robin Dunn"
47AUTHOR_EMAIL = "Robin Dunn <robin@alldunn.com>"
48URL = "http://wxPython.org/"
49DOWNLOAD_URL = "http://wxPython.org/download.php"
50LICENSE = "wxWidgets Library License (LGPL derivative)"
51PLATFORMS = "WIN32,OSX,POSIX"
52KEYWORDS = "GUI,wx,wxWindows,wxWidgets,cross-platform"
53
54LONG_DESCRIPTION = """\
55wxPython is a GUI toolkit for Python that is a wrapper around the
56wxWidgets C++ GUI library. wxPython provides a large variety of
57window types and controls, all implemented with a native look and
8cd98969
DS
58feel (by using the native widgets) on the platforms upon which it is
59supported.
1128a89b
RD
60"""
61
62CLASSIFIERS = """\
63Development Status :: 6 - Mature
64Environment :: MacOS X :: Carbon
65Environment :: Win32 (MS Windows)
66Environment :: X11 Applications :: GTK
67Intended Audience :: Developers
68License :: OSI Approved
69Operating System :: MacOS :: MacOS X
70Operating System :: Microsoft :: Windows :: Windows 95/98/2000
71Operating System :: POSIX
72Programming Language :: Python
73Topic :: Software Development :: User Interfaces
74"""
75
76## License :: OSI Approved :: wxWidgets Library Licence
77
78
79# Config values below this point can be reset on the setup.py command line.
80
81BUILD_GLCANVAS = 1 # If true, build the contrib/glcanvas extension module
a0c70b76 82BUILD_OGL = 0 # If true, build the contrib/ogl extension module
1128a89b 83BUILD_STC = 1 # If true, build the contrib/stc extension module
1128a89b 84BUILD_GIZMOS = 1 # Build a module for the gizmos contrib library
2e5aa9c4 85BUILD_ANIMATE = 1 # Build a module for the animate contrib library
1128a89b
RD
86BUILD_DLLWIDGET = 0# Build a module that enables unknown wx widgets
87 # to be loaded from a DLL and to be used from Python.
88
89 # Internet Explorer wrapper (experimental)
ef8b9c3e 90BUILD_ACTIVEX = (os.name == 'nt') # new version of IEWIN and more
1128a89b
RD
91
92
93CORE_ONLY = 0 # if true, don't build any of the above
94
95PREP_ONLY = 0 # Only run the prepatory steps, not the actual build.
96
97USE_SWIG = 0 # Should we actually execute SWIG, or just use the
98 # files already in the distribution?
99
100SWIG = "swig" # The swig executable to use.
101
102BUILD_RENAMERS = 1 # Should we build the renamer modules too?
103
d07d2bc9
RD
104FULL_DOCS = 0 # Some docstrings are split into a basic docstring and a
105 # details string. Setting this flag to 1 will
106 # cause the two strings to be combined and output
107 # as the full docstring.
108
1128a89b
RD
109UNICODE = 0 # This will pass the 'wxUSE_UNICODE' flag to SWIG and
110 # will ensure that the right headers are found and the
111 # right libs are linked.
112
113UNDEF_NDEBUG = 1 # Python 2.2 on Unix/Linux by default defines NDEBUG,
114 # and distutils will pick this up and use it on the
115 # compile command-line for the extensions. This could
116 # conflict with how wxWidgets was built. If NDEBUG is
117 # set then wxWidgets' __WXDEBUG__ setting will be turned
118 # off. If wxWidgets was actually built with it turned
119 # on then you end up with mismatched class structures,
120 # and wxPython will crash.
121
122NO_SCRIPTS = 0 # Don't install the tool scripts
123NO_HEADERS = 0 # Don't install the wxPython *.h and *.i files
124
d48c1c64
RD
125INSTALL_MULTIVERSION = 1 # Install the packages such that multiple versions
126 # can co-exist. When turned on the wx and wxPython
127 # pacakges will be installed in a versioned subdir
128 # of site-packages, and a *.pth file will be
129 # created that adds that dir to the sys.path. In
130 # addition, a wxselect.py module will be installed
131 # to site-pacakges that will allow applications to
8cd98969 132 # choose a specific version if more than one is
d48c1c64
RD
133 # installed.
134
135FLAVOUR = "" # Optional flavour string to be appended to VERSION
136 # in MULTIVERSION installs
d48c1c64 137
eed86594 138EP_ADD_OPTS = 1 # When doing MULTIVERSION installs the wx port and
b6536d60 139 # ansi/unicode settings can optionally be added to the
f189a52b 140 # subdir path used in site-packages
095315e2
RD
141
142EP_FULL_VER = 0 # When doing MULTIVERSION installs the default is to
143 # put only 2 or 3 (depending on stable/unstable) of
144 # the version compnonents into the "extra path"
145 # subdir of site-packages. Setting this option to
146 # 1 will cause the full 4 components of the version
147 # number to be used instead.
148
1128a89b
RD
149WX_CONFIG = None # Usually you shouldn't need to touch this, but you can set
150 # it to pass an alternate version of wx-config or alternate
151 # flags, eg. as required by the .deb in-tree build. By
152 # default a wx-config command will be assembled based on
153 # version, port, etc. and it will be looked for on the
154 # default $PATH.
155
02b800ce
RD
156SYS_WX_CONFIG = None # When installing an in tree build, setup.py uses wx-config
157 # for two different purposes. First, to determine the prefix
2458faeb
DS
158 # where files will be installed, and secondly, to initialise
159 # build_options.py with the correct options for it.
160 # WX_CONFIG is used for the first task. SYS_WX_CONFIG may
161 # be set independently, to the value that should appear in
162 # build_options.py, if it is different to that. The default
163 # is to use the value of WX_CONFIG.
02b800ce 164
5924e48d 165WXPORT = 'gtk2' # On Linux/Unix there are several ports of wxWidgets available.
1128a89b
RD
166 # Setting this value lets you select which will be used for
167 # the wxPython build. Possibilites are 'gtk', 'gtk2' and
168 # 'x11'. Curently only gtk and gtk2 works.
169
170BUILD_BASE = "build" # Directory to use for temporary build files.
171 # This name will be appended to if the WXPORT or
172 # the UNICODE flags are set to non-standard
173 # values. See below.
174
175
176CONTRIBS_INC = "" # A dir to add as an -I flag when compiling the contribs
177
178
179# Some MSW build settings
180
cb56afc4
RD
181MONOLITHIC = 1 # The core wxWidgets lib can be built as either a
182 # single monolithic DLL or as a collection of DLLs.
183 # This flag controls which set of libs will be used
184 # on Windows. (For other platforms it is automatic
185 # via using wx-config.)
186
187FINAL = 0 # Will use the release version of the wxWidgets libs on MSW.
188
189HYBRID = 1 # Will use the "hybrid" version of the wxWidgets
190 # libs on MSW. A "hybrid" build is one that is
191 # basically a release build, but that also defines
192 # __WXDEBUG__ to activate the runtime checks and
193 # assertions in the library. When any of these is
194 # triggered it is turned into a Python exception so
195 # this is a very useful feature to have turned on.
1128a89b 196
1128a89b
RD
197
198 # Version part of wxWidgets LIB/DLL names
199WXDLLVER = '%d%d' % (VER_MAJOR, VER_MINOR)
200
73a22369
RD
201WXPY_SRC = '.' # Assume we're in the source tree already, but allow the
202 # user to change it, particularly for extension building.
203
1128a89b
RD
204
205#----------------------------------------------------------------------
206
207def msg(text):
fb3d05e9 208 if hasattr(sys, 'setup_is_main') and sys.setup_is_main:
1128a89b
RD
209 print text
210
211
212def opj(*args):
73a22369 213 path = os.path.join(*args)
1128a89b
RD
214 return os.path.normpath(path)
215
216
217def libFlag():
218 if FINAL:
219 rv = ''
220 elif HYBRID:
221 rv = 'h'
222 else:
223 rv = 'd'
224 if UNICODE:
225 rv = 'u' + rv
226 return rv
227
228
229#----------------------------------------------------------------------
230# Some other globals
231#----------------------------------------------------------------------
232
233PKGDIR = 'wx'
234wxpExtensions = []
235DATA_FILES = []
236CLEANUP = []
237
238force = '--force' in sys.argv or '-f' in sys.argv
239debug = '--debug' in sys.argv or '-g' in sys.argv
240cleaning = 'clean' in sys.argv
241
242
243# change the PORT default for wxMac
244if sys.platform[:6] == "darwin":
245 WXPORT = 'mac'
246
247# and do the same for wxMSW, just for consistency
248if os.name == 'nt':
249 WXPORT = 'msw'
250
77bef39a 251WXPYTHON_TYPE_TABLE = '_wxPython_table'
1128a89b
RD
252
253#----------------------------------------------------------------------
254# Check for build flags on the command line
255#----------------------------------------------------------------------
256
257# Boolean (int) flags
4b8b345c 258for flag in [ 'BUILD_ACTIVEX', 'BUILD_ANIMATE', 'BUILD_DLLWIDGET',
acb4c4bd 259 'BUILD_GIZMOS', 'BUILD_GLCANVAS',
4b8b345c 260 'BUILD_OGL', 'BUILD_STC',
1128a89b
RD
261 'CORE_ONLY', 'PREP_ONLY', 'USE_SWIG', 'UNICODE',
262 'UNDEF_NDEBUG', 'NO_SCRIPTS', 'NO_HEADERS', 'BUILD_RENAMERS',
095315e2 263 'FULL_DOCS', 'INSTALL_MULTIVERSION', 'EP_ADD_OPTS', 'EP_FULL_VER',
cb56afc4 264 'MONOLITHIC', 'FINAL', 'HYBRID', ]:
1128a89b
RD
265 for x in range(len(sys.argv)):
266 if sys.argv[x].find(flag) == 0:
267 pos = sys.argv[x].find('=') + 1
268 if pos > 0:
269 vars()[flag] = eval(sys.argv[x][pos:])
270 sys.argv[x] = ''
271
272# String options
02b800ce
RD
273for option in ['WX_CONFIG', 'SYS_WX_CONFIG', 'WXDLLVER', 'BUILD_BASE',
274 'WXPORT', 'SWIG', 'CONTRIBS_INC', 'WXPY_SRC', 'FLAVOUR',
d48c1c64 275 ]:
1128a89b
RD
276 for x in range(len(sys.argv)):
277 if sys.argv[x].find(option) == 0:
278 pos = sys.argv[x].find('=') + 1
279 if pos > 0:
280 vars()[option] = sys.argv[x][pos:]
281 sys.argv[x] = ''
282
283sys.argv = filter(None, sys.argv)
284
285
f35d1a03
RD
286#----------------------------------------------------------------------
287# build options file
288#----------------------------------------------------------------------
289
02b800ce
RD
290if SYS_WX_CONFIG is None:
291 SYS_WX_CONFIG = WX_CONFIG
292
f35d1a03
RD
293build_options_template = """
294UNICODE=%d
295UNDEF_NDEBUG=%d
296INSTALL_MULTIVERSION=%d
297FLAVOUR="%s"
298EP_ADD_OPTS=%d
095315e2 299EP_FULL_VER=%d
f35d1a03
RD
300WX_CONFIG="%s"
301WXPORT="%s"
302MONOLITHIC=%d
303FINAL=%d
304HYBRID=%d
305""" % (UNICODE, UNDEF_NDEBUG, INSTALL_MULTIVERSION, FLAVOUR, EP_ADD_OPTS,
095315e2 306 EP_FULL_VER, SYS_WX_CONFIG, WXPORT, MONOLITHIC, FINAL, HYBRID)
f35d1a03
RD
307
308try:
309 from build_options import *
310except:
311 build_options_file = os.path.join(os.path.dirname(__file__), "build_options.py")
312 if not os.path.exists(build_options_file):
313 try:
314 myfile = open(build_options_file, "w")
315 myfile.write(build_options_template)
316 myfile.close()
317 except:
318 print "WARNING: Unable to create build_options.py."
319
320
1128a89b
RD
321#----------------------------------------------------------------------
322# some helper functions
323#----------------------------------------------------------------------
324
325def Verify_WX_CONFIG():
e9019d1c 326 """ Called below for the builds that need wx-config, if WX_CONFIG
8cd98969 327 is not set then determines the flags needed based on build
e9019d1c 328 options and searches for wx-config on the PATH.
1128a89b
RD
329 """
330 # if WX_CONFIG hasn't been set to an explicit value then construct one.
331 global WX_CONFIG
332 if WX_CONFIG is None:
adce89c3 333 WX_CONFIG='wx-config'
1128a89b
RD
334 port = WXPORT
335 if port == "x11":
336 port = "x11univ"
e9019d1c
RD
337 flags = ' --toolkit=%s' % port
338 flags += ' --unicode=%s' % (UNICODE and 'yes' or 'no')
339 flags += ' --version=%s.%s' % (VER_MAJOR, VER_MINOR)
1128a89b
RD
340
341 searchpath = os.environ["PATH"]
342 for p in searchpath.split(':'):
e9019d1c 343 fp = os.path.join(p, 'wx-config')
1128a89b
RD
344 if os.path.exists(fp) and os.access(fp, os.X_OK):
345 # success
346 msg("Found wx-config: " + fp)
e9019d1c
RD
347 msg(" Using flags: " + flags)
348 WX_CONFIG = fp + flags
b6536d60
RD
349 if hasattr(sys, 'setup_is_main') and not sys.setup_is_main:
350 WX_CONFIG += " 2>/dev/null "
1128a89b
RD
351 break
352 else:
e9019d1c
RD
353 msg("ERROR: WX_CONFIG not specified and wx-config not found on the $PATH")
354 # should we exit?
1128a89b 355
8cd98969 356 # TODO: execute WX_CONFIG --list and verify a matching config is found
e9019d1c 357
1128a89b 358
54f9ee45
RD
359def run_swig(files, dir, gendir, package, USE_SWIG, force, swig_args,
360 swig_deps=[], add_under=False):
1128a89b
RD
361 """Run SWIG the way I want it done"""
362
363 if USE_SWIG and not os.path.exists(os.path.join(dir, gendir)):
364 os.mkdir(os.path.join(dir, gendir))
365
366 if USE_SWIG and not os.path.exists(os.path.join("docs", "xml-raw")):
73a22369
RD
367 if not os.path.exists("docs"):
368 os.mkdir("docs")
1128a89b
RD
369 os.mkdir(os.path.join("docs", "xml-raw"))
370
371 sources = []
372
54f9ee45
RD
373 if add_under: pre = '_'
374 else: pre = ''
375
1128a89b
RD
376 for file in files:
377 basefile = os.path.splitext(file)[0]
378 i_file = os.path.join(dir, file)
54f9ee45
RD
379 py_file = os.path.join(dir, gendir, pre+basefile+'.py')
380 cpp_file = os.path.join(dir, gendir, pre+basefile+'_wrap.cpp')
fda33067 381 xml_file = os.path.join("docs", "xml-raw", basefile+pre+'_swig.xml')
1128a89b 382
54f9ee45
RD
383 if add_under:
384 interface = ['-interface', '_'+basefile+'_']
385 else:
386 interface = []
387
1128a89b
RD
388 sources.append(cpp_file)
389
390 if not cleaning and USE_SWIG:
391 for dep in swig_deps:
f35d1a03
RD
392 # this may fail for external builds, but it's not
393 # a fatal error, so keep going.
394 try:
395 if newer(dep, py_file) or newer(dep, cpp_file):
396 force = 1
397 break
398 except:
399 pass
1128a89b
RD
400
401 if force or newer(i_file, py_file) or newer(i_file, cpp_file):
8cd98969 402 ## we need forward slashes here, even on win32
1128a89b
RD
403 #cpp_file = opj(cpp_file) #'/'.join(cpp_file.split('\\'))
404 #i_file = opj(i_file) #'/'.join(i_file.split('\\'))
405
406 if BUILD_RENAMERS:
1128a89b
RD
407 xmltemp = tempfile.mktemp('.xml')
408
409 # First run swig to produce the XML file, adding
410 # an extra -D that prevents the old rename
411 # directives from being used
412 cmd = [ swig_cmd ] + swig_args + \
413 [ '-DBUILDING_RENAMERS', '-xmlout', xmltemp ] + \
414 ['-I'+dir, '-o', cpp_file, i_file]
415 msg(' '.join(cmd))
416 spawn(cmd)
417
418 # Next run build_renamers to process the XML
73a22369
RD
419 myRenamer = BuildRenamers()
420 myRenamer.run(dir, pre+basefile, xmltemp)
1128a89b
RD
421 os.remove(xmltemp)
422
423 # Then run swig for real
54f9ee45
RD
424 cmd = [ swig_cmd ] + swig_args + interface + \
425 ['-I'+dir, '-o', cpp_file, '-xmlout', xml_file, i_file]
1128a89b
RD
426 msg(' '.join(cmd))
427 spawn(cmd)
428
429
430 # copy the generated python file to the package directory
431 copy_file(py_file, package, update=not force, verbose=0)
432 CLEANUP.append(opj(package, os.path.basename(py_file)))
433
434 return sources
435
436
ace78e27
RD
437def swig_version():
438 # It may come on either stdout or stderr, depending on the
439 # version, so read both.
440 i, o, e = os.popen3(SWIG + ' -version', 't')
441 stext = o.read() + e.read()
442 import re
443 match = re.search(r'[0-9]+\.[0-9]+\.[0-9]+$', stext, re.MULTILINE)
444 if not match:
445 raise 'NotFound'
446 SVER = match.group(0)
447 return SVER
448
1128a89b
RD
449
450# Specializations of some distutils command classes
451class wx_smart_install_data(distutils.command.install_data.install_data):
452 """need to change self.install_dir to the actual library dir"""
453 def run(self):
454 install_cmd = self.get_finalized_command('install')
455 self.install_dir = getattr(install_cmd, 'install_lib')
456 return distutils.command.install_data.install_data.run(self)
457
458
459class wx_extra_clean(distutils.command.clean.clean):
460 """
461 Also cleans stuff that this setup.py copies itself. If the
462 --all flag was used also searches for .pyc, .pyd, .so files
463 """
464 def run(self):
465 from distutils import log
466 from distutils.filelist import FileList
467 global CLEANUP
468
469 distutils.command.clean.clean.run(self)
470
471 if self.all:
472 fl = FileList()
473 fl.include_pattern("*.pyc", 0)
474 fl.include_pattern("*.pyd", 0)
475 fl.include_pattern("*.so", 0)
476 CLEANUP += fl.files
477
478 for f in CLEANUP:
479 if os.path.isdir(f):
480 try:
481 if not self.dry_run and os.path.exists(f):
482 os.rmdir(f)
483 log.info("removing '%s'", f)
484 except IOError:
485 log.warning("unable to remove '%s'", f)
486
487 else:
488 try:
489 if not self.dry_run and os.path.exists(f):
490 os.remove(f)
491 log.info("removing '%s'", f)
492 except IOError:
493 log.warning("unable to remove '%s'", f)
494
495
496
d48c1c64
RD
497class wx_install(distutils.command.install.install):
498 """
499 Turns off install_path_file
500 """
501 def initialize_options(self):
502 distutils.command.install.install.initialize_options(self)
503 self.install_path_file = 0
504
505
1128a89b
RD
506class wx_install_headers(distutils.command.install_headers.install_headers):
507 """
508 Install the header files to the WXPREFIX, with an extra dir per
509 filename too
510 """
38b97c15 511 def initialize_options(self):
1128a89b
RD
512 self.root = None
513 distutils.command.install_headers.install_headers.initialize_options(self)
514
38b97c15 515 def finalize_options(self):
1128a89b
RD
516 self.set_undefined_options('install', ('root', 'root'))
517 distutils.command.install_headers.install_headers.finalize_options(self)
518
519 def run(self):
520 if os.name == 'nt':
521 return
522 headers = self.distribution.headers
523 if not headers:
524 return
525
526 root = self.root
862b5362 527 if root is None or WXPREFIX.startswith(root):
1128a89b
RD
528 root = ''
529 for header, location in headers:
e9019d1c
RD
530 install_dir = os.path.normpath(root +
531 WXPREFIX +
532 '/include/wx-%d.%d/wx' % (VER_MAJOR, VER_MINOR) +
533 location)
1128a89b
RD
534 self.mkpath(install_dir)
535 (out, _) = self.copy_file(header, install_dir)
536 self.outfiles.append(out)
537
538
539
540
541def build_locale_dir(destdir, verbose=1):
542 """Build a locale dir under the wxPython package for MSW"""
543 moFiles = glob.glob(opj(WXDIR, 'locale', '*.mo'))
544 for src in moFiles:
545 lang = os.path.splitext(os.path.basename(src))[0]
546 dest = opj(destdir, lang, 'LC_MESSAGES')
547 mkpath(dest, verbose=verbose)
548 copy_file(src, opj(dest, 'wxstd.mo'), update=1, verbose=verbose)
549 CLEANUP.append(opj(dest, 'wxstd.mo'))
550 CLEANUP.append(dest)
551
552
553def build_locale_list(srcdir):
554 # get a list of all files under the srcdir, to be used for install_data
555 def walk_helper(lst, dirname, files):
556 for f in files:
557 filename = opj(dirname, f)
558 if not os.path.isdir(filename):
559 lst.append( (dirname, [filename]) )
560 file_list = []
561 os.path.walk(srcdir, walk_helper, file_list)
562 return file_list
563
564
565def find_data_files(srcdir, *wildcards):
566 # get a list of all files under the srcdir matching wildcards,
567 # returned in a format to be used for install_data
568
569 def walk_helper(arg, dirname, files):
570 names = []
571 lst, wildcards = arg
572 for wc in wildcards:
573 for f in files:
574 filename = opj(dirname, f)
575 if fnmatch.fnmatch(filename, wc) and not os.path.isdir(filename):
576 names.append(filename)
577 if names:
578 lst.append( (dirname, names ) )
579
580 file_list = []
581 os.path.walk(srcdir, walk_helper, (file_list, wildcards))
582 return file_list
583
584
585def makeLibName(name):
586 if os.name == 'posix':
587 libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE)
cb56afc4 588 elif name:
1128a89b 589 libname = 'wxmsw%s%s_%s' % (WXDLLVER, libFlag(), name)
cb56afc4
RD
590 else:
591 libname = 'wxmsw%s%s' % (WXDLLVER, libFlag())
1128a89b
RD
592 return [libname]
593
594
595
596def adjustCFLAGS(cflags, defines, includes):
38b97c15 597 '''Extract the raw -I, -D, and -U flags and put them into
1128a89b
RD
598 defines and includes as needed.'''
599 newCFLAGS = []
600 for flag in cflags:
601 if flag[:2] == '-I':
602 includes.append(flag[2:])
603 elif flag[:2] == '-D':
604 flag = flag[2:]
605 if flag.find('=') == -1:
606 defines.append( (flag, None) )
607 else:
608 defines.append( tuple(flag.split('=')) )
609 elif flag[:2] == '-U':
610 defines.append( (flag[2:], ) )
611 else:
612 newCFLAGS.append(flag)
613 return newCFLAGS
614
615
616
617def adjustLFLAGS(lfags, libdirs, libs):
d48c1c64 618 '''Extract the -L and -l flags and put them in libdirs and libs as needed'''
1128a89b
RD
619 newLFLAGS = []
620 for flag in lflags:
621 if flag[:2] == '-L':
622 libdirs.append(flag[2:])
623 elif flag[:2] == '-l':
624 libs.append(flag[2:])
625 else:
626 newLFLAGS.append(flag)
627
628 return newLFLAGS
629
d48c1c64
RD
630
631
632def getExtraPath(shortVer=True, addOpts=False):
633 """Get the dirname that wxPython will be installed under."""
634
635 if shortVer:
636 # short version, just Major.Minor
637 ep = "wx-%d.%d" % (VER_MAJOR, VER_MINOR)
cb56afc4 638
d48c1c64 639 # plus release if minor is odd
f189a52b
RD
640 if VER_MINOR % 2 == 1:
641 ep += ".%d" % VER_RELEASE
cb56afc4 642
d48c1c64
RD
643 else:
644 # long version, full version
645 ep = "wx-%d.%d.%d.%d" % (VER_MAJOR, VER_MINOR, VER_RELEASE, VER_SUBREL)
646
647 if addOpts:
cb56afc4
RD
648 port = WXPORT
649 if port == "msw": port = "win32"
d48c1c64
RD
650 ep += "-%s-%s" % (WXPORT, (UNICODE and 'unicode' or 'ansi'))
651
652 if FLAVOUR:
653 ep += "-" + FLAVOUR
654
655 return ep
656
1128a89b
RD
657#----------------------------------------------------------------------
658# sanity checks
659
660if CORE_ONLY:
661 BUILD_GLCANVAS = 0
662 BUILD_OGL = 0
663 BUILD_STC = 0
1128a89b
RD
664 BUILD_GIZMOS = 0
665 BUILD_DLLWIDGET = 0
1128a89b 666 BUILD_ACTIVEX = 0
4a40657b 667 BUILD_ANIMATE = 0
1128a89b
RD
668
669if debug:
670 FINAL = 0
671 HYBRID = 0
672
673if FINAL:
674 HYBRID = 0
675
85245f48 676if UNICODE and WXPORT not in ['msw', 'gtk2', 'mac']:
1128a89b
RD
677 raise SystemExit, "UNICODE mode not currently supported on this WXPORT: "+WXPORT
678
679
680if CONTRIBS_INC:
681 CONTRIBS_INC = [ CONTRIBS_INC ]
682else:
683 CONTRIBS_INC = []
684
685
686#----------------------------------------------------------------------
687# Setup some platform specific stuff
688#----------------------------------------------------------------------
689
690if os.name == 'nt':
691 # Set compile flags and such for MSVC. These values are derived
692 # from the wxWidgets makefiles for MSVC, other compilers settings
693 # will probably vary...
694 if os.environ.has_key('WXWIN'):
695 WXDIR = os.environ['WXWIN']
696 else:
697 msg("WARNING: WXWIN not set in environment.")
698 WXDIR = '..' # assumes in CVS tree
699 WXPLAT = '__WXMSW__'
700 GENDIR = 'msw'
543cba02 701
1128a89b
RD
702 includes = ['include', 'src',
703 opj(WXDIR, 'lib', 'vc_dll', 'msw' + libFlag()),
704 opj(WXDIR, 'include'),
705 opj(WXDIR, 'contrib', 'include'),
706 ]
707
708 defines = [ ('WIN32', None),
709 ('_WINDOWS', None),
710
711 (WXPLAT, None),
712 ('WXUSINGDLL', '1'),
713
77bef39a 714 ('SWIG_TYPE_TABLE', WXPYTHON_TYPE_TABLE),
214c4fbe 715 ('SWIG_PYTHON_OUTPUT_TUPLE', None),
1128a89b
RD
716 ('WXP_USE_THREAD', '1'),
717 ]
718
719 if UNDEF_NDEBUG:
720 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
721
722 if HYBRID:
723 defines.append( ('__NO_VC_CRTDBG__', None) )
724
725 if not FINAL or HYBRID:
726 defines.append( ('__WXDEBUG__', None) )
727
c6abf0ef
VZ
728 if UNICODE:
729 defines.append( ('wxUSE_UNICODE', 1) )
730
1128a89b 731 libdirs = [ opj(WXDIR, 'lib', 'vc_dll') ]
cb56afc4
RD
732 if MONOLITHIC:
733 libs = makeLibName('')
734 else:
735 libs = [ 'wxbase' + WXDLLVER + libFlag(),
736 'wxbase' + WXDLLVER + libFlag() + '_net',
737 'wxbase' + WXDLLVER + libFlag() + '_xml',
738 makeLibName('core')[0],
739 makeLibName('adv')[0],
740 makeLibName('html')[0],
741 makeLibName('xrc')[0],
742 ]
1128a89b
RD
743
744 libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32',
745 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
746 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
747 'advapi32', 'wsock32']
748
749
750 cflags = [ '/Gy',
751 # '/GX-' # workaround for internal compiler error in MSVC on some machines
752 ]
753 lflags = None
754
755 # Other MSVC flags...
756 # Too bad I don't remember why I was playing with these, can they be removed?
757 if FINAL:
758 pass #cflags = cflags + ['/O1']
759 elif HYBRID :
760 pass #cflags = cflags + ['/Ox']
761 else:
762 pass # cflags = cflags + ['/Od', '/Z7']
763 # lflags = ['/DEBUG', ]
764
765
766
767#----------------------------------------------------------------------
768
769elif os.name == 'posix':
770 WXDIR = '..'
771 includes = ['include', 'src']
77bef39a 772 defines = [('SWIG_TYPE_TABLE', WXPYTHON_TYPE_TABLE),
214c4fbe 773 ('SWIG_PYTHON_OUTPUT_TUPLE', None),
1128a89b
RD
774 ('WXP_USE_THREAD', '1'),
775 ]
776 if UNDEF_NDEBUG:
777 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
778
779 Verify_WX_CONFIG()
780
781 libdirs = []
782 libs = []
783
784 # If you get unresolved symbol errors on Solaris and are using gcc, then
785 # uncomment this block to add the right flags to the link step and build
786 # again.
787 ## if os.uname()[0] == 'SunOS':
a432a02b 788 ## import commands
1128a89b
RD
789 ## libs.append('gcc')
790 ## libdirs.append(commands.getoutput("gcc -print-search-dirs | grep '^install' | awk '{print $2}'")[:-1])
791
792 cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1]
793 cflags = cflags.split()
794 if debug:
795 cflags.append('-g')
796 cflags.append('-O0')
797 else:
798 cflags.append('-O3')
799
800 lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1]
801 lflags = lflags.split()
802
803 WXBASENAME = os.popen(WX_CONFIG + ' --basename').read()[:-1]
804 WXRELEASE = os.popen(WX_CONFIG + ' --release').read()[:-1]
805 WXPREFIX = os.popen(WX_CONFIG + ' --prefix').read()[:-1]
806
807
2cbbc68d 808 if sys.platform[:6] == "darwin" and WXPORT == 'mac':
1128a89b
RD
809 # Flags and such for a Darwin (Max OS X) build of Python
810 WXPLAT = '__WXMAC__'
811 GENDIR = 'mac'
812 libs = ['stdc++']
813 NO_SCRIPTS = 1
814
815
816 else:
817 # Set flags for other Unix type platforms
818 GENDIR = WXPORT
819
820 if WXPORT == 'gtk':
821 WXPLAT = '__WXGTK__'
822 portcfg = os.popen('gtk-config --cflags', 'r').read()[:-1]
823 elif WXPORT == 'gtk2':
824 WXPLAT = '__WXGTK__'
825 GENDIR = 'gtk' # no code differences so use the same generated sources
826 portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1]
827 BUILD_BASE = BUILD_BASE + '-' + WXPORT
828 elif WXPORT == 'x11':
829 WXPLAT = '__WXX11__'
830 portcfg = ''
831 BUILD_BASE = BUILD_BASE + '-' + WXPORT
832 else:
833 raise SystemExit, "Unknown WXPORT value: " + WXPORT
834
835 cflags += portcfg.split()
836
837 # Some distros (e.g. Mandrake) put libGLU in /usr/X11R6/lib, but
838 # wx-config doesn't output that for some reason. For now, just
839 # add it unconditionally but we should really check if the lib is
840 # really found there or wx-config should be fixed.
841 libdirs.append("/usr/X11R6/lib")
842
843
844 # Move the various -I, -D, etc. flags we got from the *config scripts
845 # into the distutils lists.
846 cflags = adjustCFLAGS(cflags, defines, includes)
847 lflags = adjustLFLAGS(lflags, libdirs, libs)
848
849
850#----------------------------------------------------------------------
851else:
852 raise 'Sorry, platform not supported...'
853
854
855#----------------------------------------------------------------------
856# post platform setup checks and tweaks, create the full version string
857#----------------------------------------------------------------------
858
859if UNICODE:
860 BUILD_BASE = BUILD_BASE + '.unicode'
cb56afc4 861 ##VER_FLAGS += 'u'
1128a89b 862
96acd0c1 863if os.path.exists('DAILY_BUILD'):
4b2826e5
RD
864
865 VER_FLAGS += '.' + open('DAILY_BUILD').read().strip()
1128a89b
RD
866
867VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE,
868 VER_SUBREL, VER_FLAGS)
869
870
871#----------------------------------------------------------------------
872# SWIG defaults
873#----------------------------------------------------------------------
874
d1b3d685 875# *.i files could live in the wxWidgets/wxPython/src dir, or in
f35d1a03
RD
876# a subdirectory of the devel package. Let's specify both
877# dirs as includes so we don't have to guess which is correct.
878
879wxfilesdir = ""
bbc916e2 880i_subdir = opj("include", getExtraPath(), "wx", "wxPython", "i_files")
f35d1a03
RD
881if os.name != "nt":
882 wxfilesdir = opj(WXPREFIX, i_subdir)
883else:
884 wxfilesdir = opj(WXPY_SRC, i_subdir)
d1b3d685 885
f35d1a03
RD
886i_files_includes = [ '-I' + opj(WXPY_SRC, 'src'),
887 '-I' + wxfilesdir ]
f35d1a03 888
1128a89b
RD
889swig_cmd = SWIG
890swig_force = force
891swig_args = ['-c++',
214c4fbe 892 #'-Wall',
1128a89b 893 '-python',
1128a89b
RD
894 '-new_repr',
895 '-modern',
1128a89b 896 '-D'+WXPLAT,
f35d1a03 897 ] + i_files_includes
ace78e27
RD
898
899if USE_SWIG:
900 SVER = swig_version()
901 if int(SVER[-2:]) >= 29:
902 swig_args += [ '-fastdispatch',
903 '-fvirtual',
904 '-fastinit',
905 '-fastunpack',
0ae3258d 906 #'-outputtuple', Currently setting this with a -D define above
ace78e27 907 ]
f35d1a03 908
1128a89b
RD
909if UNICODE:
910 swig_args.append('-DwxUSE_UNICODE')
911
d07d2bc9
RD
912if FULL_DOCS:
913 swig_args.append('-D_DO_FULL_DOCS')
914
915
73a22369 916swig_deps = [ opj(WXPY_SRC, 'src/my_typemaps.i'),
1b8c7ba6 917 opj(WXPY_SRC, 'src/pyfragments.swg'),
1128a89b
RD
918 ]
919
920depends = [ #'include/wx/wxPython/wxPython.h',
921 #'include/wx/wxPython/wxPython_int.h',
922 #'src/pyclasses.h',
923 ]
924
925#----------------------------------------------------------------------
c278542b
RD
926
927####################################
928# BuildRenamers
929####################################
930
bbc916e2 931import pprint, shutil
c278542b
RD
932try:
933 import libxml2
934 FOUND_LIBXML2 = True
935except ImportError:
936 FOUND_LIBXML2 = False
937
938#---------------------------------------------------------------------------
939
c278542b
RD
940renamerTemplateStart = """\
941// A bunch of %rename directives generated by BuildRenamers in config.py
942// in order to remove the wx prefix from all global scope names.
943
944#ifndef BUILDING_RENAMERS
945
946"""
947
948renamerTemplateEnd = """
949#endif
950"""
951
952wxPythonTemplateStart = """\
953## This file reverse renames symbols in the wx package to give
954## them their wx prefix again, for backwards compatibility.
955##
956## Generated by BuildRenamers in config.py
957
958# This silly stuff here is so the wxPython.wx module doesn't conflict
959# with the wx package. We need to import modules from the wx package
960# here, then we'll put the wxPython.wx entry back in sys.modules.
961import sys
962_wx = None
963if sys.modules.has_key('wxPython.wx'):
964 _wx = sys.modules['wxPython.wx']
965 del sys.modules['wxPython.wx']
966
967import wx.%s
968
969sys.modules['wxPython.wx'] = _wx
970del sys, _wx
971
972
973# Now assign all the reverse-renamed names:
974"""
975
976wxPythonTemplateEnd = """
977
978"""
979
980
981
982#---------------------------------------------------------------------------
983class BuildRenamers:
984 def run(self, destdir, modname, xmlfile, wxPythonDir="wxPython"):
985
986 assert FOUND_LIBXML2, "The libxml2 module is required to use the BuildRenamers functionality."
987
988 if not os.path.exists(wxPythonDir):
989 os.mkdir(wxPythonDir)
990
991 swigDest = os.path.join(destdir, "_"+modname+"_rename.i")
992 pyDest = os.path.join(wxPythonDir, modname + '.py')
993
994 swigDestTemp = tempfile.mktemp('.tmp')
995 swigFile = open(swigDestTemp, "w")
996 swigFile.write(renamerTemplateStart)
997
998 pyDestTemp = tempfile.mktemp('.tmp')
999 pyFile = open(pyDestTemp, "w")
1000 pyFile.write(wxPythonTemplateStart % modname)
1001
1002 print "Parsing XML and building renamers..."
1003 self.processXML(xmlfile, modname, swigFile, pyFile)
1004
1005 self.checkOtherNames(pyFile, modname,
1006 os.path.join(destdir, '_'+modname+'_reverse.txt'))
1007 pyFile.write(wxPythonTemplateEnd)
1008 pyFile.close()
1009
1010 swigFile.write(renamerTemplateEnd)
1011 swigFile.close()
1012
1013 # Compare the files just created with the existing one and
1014 # blow away the old one if they are different.
1015 for dest, temp in [(swigDest, swigDestTemp),
1016 (pyDest, pyDestTemp)]:
bbc916e2
KO
1017 # NOTE: we don't use shutil.move() because it was introduced
1018 # in Python 2.3. Eventually we can switch to it when people
1019 # stop building using 2.2.
c278542b 1020 if not os.path.exists(dest):
bbc916e2 1021 shutil.copyfile(temp, dest)
c278542b
RD
1022 elif open(dest).read() != open(temp).read():
1023 os.unlink(dest)
bbc916e2 1024 shutil.copyfile(temp, dest)
c278542b
RD
1025 else:
1026 print dest + " not changed."
1027 os.unlink(temp)
1028
1029 #---------------------------------------------------------------------------
1030
1031
1032 def GetAttr(self, node, name):
1033 path = "./attributelist/attribute[@name='%s']/@value" % name
1034 n = node.xpathEval2(path)
1035 if len(n):
1036 return n[0].content
1037 else:
1038 return None
1039
1040
1041 def processXML(self, xmlfile, modname, swigFile, pyFile):
1042
1043 topnode = libxml2.parseFile(xmlfile).children
1044
1045 # remove any import nodes as we don't need to do renamers for symbols found therein
1046 imports = topnode.xpathEval2("*/import")
1047 for n in imports:
1048 n.unlinkNode()
1049 n.freeNode()
1050
1051 # do a depth first iteration over what's left
1052 for node in topnode:
1053 doRename = False
c278542b
RD
1054 addWX = False
1055 revOnly = False
1056
1057
1058 if node.name == "class":
1059 lastClassName = name = self.GetAttr(node, "name")
1060 lastClassSymName = sym_name = self.GetAttr(node, "sym_name")
1061 doRename = True
c278542b
RD
1062 if sym_name != name:
1063 name = sym_name
1064 addWX = True
1065
1066 # renamed constructors
1067 elif node.name == "constructor":
1068 name = self.GetAttr(node, "name")
1069 sym_name = self.GetAttr(node, "sym_name")
1070 if sym_name != name:
1071 name = sym_name
1072 addWX = True
1073 doRename = True
1074
1075 # only enumitems at the top level
1076 elif node.name == "enumitem" and node.parent.parent.name == "include":
1077 name = self.GetAttr(node, "name")
1078 sym_name = self.GetAttr(node, "sym_name")
1079 doRename = True
1080
1081
1082 elif node.name in ["cdecl", "constant"]:
1083 name = self.GetAttr(node, "name")
1084 sym_name = self.GetAttr(node, "sym_name")
1085 toplevel = node.parent.name == "include"
1086
1087 # top-level functions
1088 if toplevel and self.GetAttr(node, "view") == "globalfunctionHandler":
1089 doRename = True
1090
1091 # top-level global vars
1092 elif toplevel and self.GetAttr(node, "feature_immutable") == "1":
1093 doRename = True
1094
1095 # static methods
1096 elif self.GetAttr(node, "view") == "staticmemberfunctionHandler":
1097 name = lastClassName + '_' + name
1098 sym_name = lastClassSymName + '_' + sym_name
1099 # only output the reverse renamer in this case
1100 doRename = revOnly = True
1101
1102 if doRename and name != sym_name:
1103 name = sym_name
1104 addWX = True
1105
1106
1107 if doRename and name:
1108 old = new = name
1109 if old.startswith('wx') and not old.startswith('wxEVT_'):
1110 # remove all wx prefixes except wxEVT_ and write a %rename directive for it
1111 new = old[2:]
1112 if not revOnly:
1113 swigFile.write("%%rename(%s) %35s;\n" % (new, old))
1114
1115 # Write assignments to import into the old wxPython namespace
1116 if addWX and not old.startswith('wx'):
1117 old = 'wx'+old
1118 pyFile.write("%s = wx.%s.%s\n" % (old, modname, new))
c278542b
RD
1119
1120
1121 #---------------------------------------------------------------------------
1122
1123 def checkOtherNames(self, pyFile, moduleName, filename):
1124 if os.path.exists(filename):
1125 prefixes = []
1126 for line in file(filename):
1127 if line.endswith('\n'):
1128 line = line[:-1]
1129 if line and not line.startswith('#'):
1130 if line.endswith('*'):
1131 prefixes.append(line[:-1])
1132 elif line.find('=') != -1:
1133 pyFile.write("%s\n" % line)
1134 else:
1135 wxname = 'wx' + line
1136 if line.startswith('wx') or line.startswith('WX') or line.startswith('EVT'):
1137 wxname = line
1138 pyFile.write("%s = wx.%s.%s\n" % (wxname, moduleName, line))
1139
1140 if prefixes:
1141 pyFile.write(
1142 "\n\nd = globals()\nfor k, v in wx.%s.__dict__.iteritems():"
1143 % moduleName)
1144 first = True
1145 for p in prefixes:
1146 if first:
1147 pyFile.write("\n if ")
1148 first = False
1149 else:
1150 pyFile.write("\n elif ")
1151 pyFile.write("k.startswith('%s'):\n d[k] = v" % p)
1152 pyFile.write("\ndel d, k, v\n\n")
1153
1154
1155#---------------------------------------------------------------------------