]> git.saurik.com Git - wxWidgets.git/blame - wxPython/config.py
Do not set the wmclass for toplevels. This MUST be unique across the application...
[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
ddc00ed1 102BUILD_RENAMERS = 0 # Should we build the renamer modules too?
1128a89b 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
f460c29d 181MONOLITHIC = 0 # The core wxWidgets lib can be built as either a
cb56afc4
RD
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 273for option in ['WX_CONFIG', 'SYS_WX_CONFIG', 'WXDLLVER', 'BUILD_BASE',
b6fe9de8
RD
274 'WXPORT', 'SWIG', 'CONTRIBS_INC', 'WXPY_SRC', 'FLAVOUR',
275 'VER_FLAGS',
d48c1c64 276 ]:
1128a89b
RD
277 for x in range(len(sys.argv)):
278 if sys.argv[x].find(option) == 0:
279 pos = sys.argv[x].find('=') + 1
280 if pos > 0:
281 vars()[option] = sys.argv[x][pos:]
282 sys.argv[x] = ''
283
284sys.argv = filter(None, sys.argv)
285
286
f35d1a03
RD
287#----------------------------------------------------------------------
288# build options file
289#----------------------------------------------------------------------
290
02b800ce
RD
291if SYS_WX_CONFIG is None:
292 SYS_WX_CONFIG = WX_CONFIG
293
f35d1a03
RD
294build_options_template = """
295UNICODE=%d
296UNDEF_NDEBUG=%d
297INSTALL_MULTIVERSION=%d
298FLAVOUR="%s"
299EP_ADD_OPTS=%d
095315e2 300EP_FULL_VER=%d
f35d1a03
RD
301WX_CONFIG="%s"
302WXPORT="%s"
303MONOLITHIC=%d
304FINAL=%d
305HYBRID=%d
306""" % (UNICODE, UNDEF_NDEBUG, INSTALL_MULTIVERSION, FLAVOUR, EP_ADD_OPTS,
095315e2 307 EP_FULL_VER, SYS_WX_CONFIG, WXPORT, MONOLITHIC, FINAL, HYBRID)
f35d1a03
RD
308
309try:
310 from build_options import *
311except:
312 build_options_file = os.path.join(os.path.dirname(__file__), "build_options.py")
313 if not os.path.exists(build_options_file):
314 try:
315 myfile = open(build_options_file, "w")
316 myfile.write(build_options_template)
317 myfile.close()
318 except:
319 print "WARNING: Unable to create build_options.py."
320
321
1128a89b
RD
322#----------------------------------------------------------------------
323# some helper functions
324#----------------------------------------------------------------------
325
326def Verify_WX_CONFIG():
e9019d1c 327 """ Called below for the builds that need wx-config, if WX_CONFIG
8cd98969 328 is not set then determines the flags needed based on build
e9019d1c 329 options and searches for wx-config on the PATH.
1128a89b
RD
330 """
331 # if WX_CONFIG hasn't been set to an explicit value then construct one.
332 global WX_CONFIG
333 if WX_CONFIG is None:
adce89c3 334 WX_CONFIG='wx-config'
1128a89b
RD
335 port = WXPORT
336 if port == "x11":
337 port = "x11univ"
e9019d1c
RD
338 flags = ' --toolkit=%s' % port
339 flags += ' --unicode=%s' % (UNICODE and 'yes' or 'no')
340 flags += ' --version=%s.%s' % (VER_MAJOR, VER_MINOR)
1128a89b
RD
341
342 searchpath = os.environ["PATH"]
343 for p in searchpath.split(':'):
e9019d1c 344 fp = os.path.join(p, 'wx-config')
1128a89b
RD
345 if os.path.exists(fp) and os.access(fp, os.X_OK):
346 # success
347 msg("Found wx-config: " + fp)
e9019d1c
RD
348 msg(" Using flags: " + flags)
349 WX_CONFIG = fp + flags
b6536d60
RD
350 if hasattr(sys, 'setup_is_main') and not sys.setup_is_main:
351 WX_CONFIG += " 2>/dev/null "
1128a89b
RD
352 break
353 else:
e9019d1c
RD
354 msg("ERROR: WX_CONFIG not specified and wx-config not found on the $PATH")
355 # should we exit?
1128a89b 356
8cd98969 357 # TODO: execute WX_CONFIG --list and verify a matching config is found
e9019d1c 358
1128a89b 359
54f9ee45
RD
360def run_swig(files, dir, gendir, package, USE_SWIG, force, swig_args,
361 swig_deps=[], add_under=False):
1128a89b
RD
362 """Run SWIG the way I want it done"""
363
364 if USE_SWIG and not os.path.exists(os.path.join(dir, gendir)):
365 os.mkdir(os.path.join(dir, gendir))
366
1128a89b
RD
367 sources = []
368
54f9ee45
RD
369 if add_under: pre = '_'
370 else: pre = ''
371
1128a89b
RD
372 for file in files:
373 basefile = os.path.splitext(file)[0]
374 i_file = os.path.join(dir, file)
54f9ee45
RD
375 py_file = os.path.join(dir, gendir, pre+basefile+'.py')
376 cpp_file = os.path.join(dir, gendir, pre+basefile+'_wrap.cpp')
1128a89b 377
54f9ee45
RD
378 if add_under:
379 interface = ['-interface', '_'+basefile+'_']
380 else:
381 interface = []
382
1128a89b
RD
383 sources.append(cpp_file)
384
385 if not cleaning and USE_SWIG:
386 for dep in swig_deps:
f35d1a03
RD
387 # this may fail for external builds, but it's not
388 # a fatal error, so keep going.
389 try:
390 if newer(dep, py_file) or newer(dep, cpp_file):
391 force = 1
392 break
393 except:
394 pass
1128a89b
RD
395
396 if force or newer(i_file, py_file) or newer(i_file, cpp_file):
8cd98969 397 ## we need forward slashes here, even on win32
1128a89b
RD
398 #cpp_file = opj(cpp_file) #'/'.join(cpp_file.split('\\'))
399 #i_file = opj(i_file) #'/'.join(i_file.split('\\'))
400
401 if BUILD_RENAMERS:
1128a89b
RD
402 xmltemp = tempfile.mktemp('.xml')
403
404 # First run swig to produce the XML file, adding
405 # an extra -D that prevents the old rename
406 # directives from being used
407 cmd = [ swig_cmd ] + swig_args + \
408 [ '-DBUILDING_RENAMERS', '-xmlout', xmltemp ] + \
409 ['-I'+dir, '-o', cpp_file, i_file]
410 msg(' '.join(cmd))
411 spawn(cmd)
412
413 # Next run build_renamers to process the XML
73a22369
RD
414 myRenamer = BuildRenamers()
415 myRenamer.run(dir, pre+basefile, xmltemp)
1128a89b
RD
416 os.remove(xmltemp)
417
418 # Then run swig for real
54f9ee45 419 cmd = [ swig_cmd ] + swig_args + interface + \
4a692286 420 ['-I'+dir, '-o', cpp_file, i_file]
1128a89b
RD
421 msg(' '.join(cmd))
422 spawn(cmd)
423
424
425 # copy the generated python file to the package directory
426 copy_file(py_file, package, update=not force, verbose=0)
427 CLEANUP.append(opj(package, os.path.basename(py_file)))
428
429 return sources
430
431
ace78e27
RD
432def swig_version():
433 # It may come on either stdout or stderr, depending on the
434 # version, so read both.
435 i, o, e = os.popen3(SWIG + ' -version', 't')
436 stext = o.read() + e.read()
437 import re
438 match = re.search(r'[0-9]+\.[0-9]+\.[0-9]+$', stext, re.MULTILINE)
439 if not match:
440 raise 'NotFound'
441 SVER = match.group(0)
442 return SVER
443
1128a89b
RD
444
445# Specializations of some distutils command classes
446class wx_smart_install_data(distutils.command.install_data.install_data):
447 """need to change self.install_dir to the actual library dir"""
448 def run(self):
449 install_cmd = self.get_finalized_command('install')
450 self.install_dir = getattr(install_cmd, 'install_lib')
451 return distutils.command.install_data.install_data.run(self)
452
453
454class wx_extra_clean(distutils.command.clean.clean):
455 """
456 Also cleans stuff that this setup.py copies itself. If the
457 --all flag was used also searches for .pyc, .pyd, .so files
458 """
459 def run(self):
460 from distutils import log
461 from distutils.filelist import FileList
462 global CLEANUP
463
464 distutils.command.clean.clean.run(self)
465
466 if self.all:
467 fl = FileList()
468 fl.include_pattern("*.pyc", 0)
469 fl.include_pattern("*.pyd", 0)
470 fl.include_pattern("*.so", 0)
471 CLEANUP += fl.files
472
473 for f in CLEANUP:
474 if os.path.isdir(f):
475 try:
476 if not self.dry_run and os.path.exists(f):
477 os.rmdir(f)
478 log.info("removing '%s'", f)
479 except IOError:
480 log.warning("unable to remove '%s'", f)
481
482 else:
483 try:
484 if not self.dry_run and os.path.exists(f):
485 os.remove(f)
486 log.info("removing '%s'", f)
487 except IOError:
488 log.warning("unable to remove '%s'", f)
489
490
491
d48c1c64
RD
492class wx_install(distutils.command.install.install):
493 """
494 Turns off install_path_file
495 """
496 def initialize_options(self):
497 distutils.command.install.install.initialize_options(self)
498 self.install_path_file = 0
499
500
1128a89b
RD
501class wx_install_headers(distutils.command.install_headers.install_headers):
502 """
503 Install the header files to the WXPREFIX, with an extra dir per
504 filename too
505 """
38b97c15 506 def initialize_options(self):
1128a89b
RD
507 self.root = None
508 distutils.command.install_headers.install_headers.initialize_options(self)
509
38b97c15 510 def finalize_options(self):
1128a89b
RD
511 self.set_undefined_options('install', ('root', 'root'))
512 distutils.command.install_headers.install_headers.finalize_options(self)
513
514 def run(self):
515 if os.name == 'nt':
516 return
517 headers = self.distribution.headers
518 if not headers:
519 return
520
521 root = self.root
862b5362 522 if root is None or WXPREFIX.startswith(root):
1128a89b
RD
523 root = ''
524 for header, location in headers:
e9019d1c
RD
525 install_dir = os.path.normpath(root +
526 WXPREFIX +
527 '/include/wx-%d.%d/wx' % (VER_MAJOR, VER_MINOR) +
528 location)
1128a89b
RD
529 self.mkpath(install_dir)
530 (out, _) = self.copy_file(header, install_dir)
531 self.outfiles.append(out)
532
533
534
535
536def build_locale_dir(destdir, verbose=1):
537 """Build a locale dir under the wxPython package for MSW"""
538 moFiles = glob.glob(opj(WXDIR, 'locale', '*.mo'))
539 for src in moFiles:
540 lang = os.path.splitext(os.path.basename(src))[0]
541 dest = opj(destdir, lang, 'LC_MESSAGES')
542 mkpath(dest, verbose=verbose)
543 copy_file(src, opj(dest, 'wxstd.mo'), update=1, verbose=verbose)
544 CLEANUP.append(opj(dest, 'wxstd.mo'))
545 CLEANUP.append(dest)
546
547
548def build_locale_list(srcdir):
549 # get a list of all files under the srcdir, to be used for install_data
550 def walk_helper(lst, dirname, files):
551 for f in files:
552 filename = opj(dirname, f)
553 if not os.path.isdir(filename):
554 lst.append( (dirname, [filename]) )
555 file_list = []
556 os.path.walk(srcdir, walk_helper, file_list)
557 return file_list
558
559
560def find_data_files(srcdir, *wildcards):
561 # get a list of all files under the srcdir matching wildcards,
562 # returned in a format to be used for install_data
563
564 def walk_helper(arg, dirname, files):
565 names = []
566 lst, wildcards = arg
567 for wc in wildcards:
568 for f in files:
569 filename = opj(dirname, f)
570 if fnmatch.fnmatch(filename, wc) and not os.path.isdir(filename):
571 names.append(filename)
572 if names:
573 lst.append( (dirname, names ) )
574
575 file_list = []
576 os.path.walk(srcdir, walk_helper, (file_list, wildcards))
577 return file_list
578
579
580def makeLibName(name):
581 if os.name == 'posix':
582 libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE)
cb56afc4 583 elif name:
1128a89b 584 libname = 'wxmsw%s%s_%s' % (WXDLLVER, libFlag(), name)
cb56afc4
RD
585 else:
586 libname = 'wxmsw%s%s' % (WXDLLVER, libFlag())
1128a89b
RD
587 return [libname]
588
589
590
591def adjustCFLAGS(cflags, defines, includes):
38b97c15 592 '''Extract the raw -I, -D, and -U flags and put them into
1128a89b
RD
593 defines and includes as needed.'''
594 newCFLAGS = []
595 for flag in cflags:
596 if flag[:2] == '-I':
597 includes.append(flag[2:])
598 elif flag[:2] == '-D':
599 flag = flag[2:]
600 if flag.find('=') == -1:
601 defines.append( (flag, None) )
602 else:
603 defines.append( tuple(flag.split('=')) )
604 elif flag[:2] == '-U':
605 defines.append( (flag[2:], ) )
606 else:
607 newCFLAGS.append(flag)
608 return newCFLAGS
609
610
611
612def adjustLFLAGS(lfags, libdirs, libs):
d48c1c64 613 '''Extract the -L and -l flags and put them in libdirs and libs as needed'''
1128a89b
RD
614 newLFLAGS = []
615 for flag in lflags:
616 if flag[:2] == '-L':
617 libdirs.append(flag[2:])
618 elif flag[:2] == '-l':
619 libs.append(flag[2:])
620 else:
621 newLFLAGS.append(flag)
622
623 return newLFLAGS
624
d48c1c64
RD
625
626
627def getExtraPath(shortVer=True, addOpts=False):
628 """Get the dirname that wxPython will be installed under."""
629
630 if shortVer:
631 # short version, just Major.Minor
632 ep = "wx-%d.%d" % (VER_MAJOR, VER_MINOR)
cb56afc4 633
d48c1c64 634 # plus release if minor is odd
f189a52b
RD
635 if VER_MINOR % 2 == 1:
636 ep += ".%d" % VER_RELEASE
cb56afc4 637
d48c1c64
RD
638 else:
639 # long version, full version
640 ep = "wx-%d.%d.%d.%d" % (VER_MAJOR, VER_MINOR, VER_RELEASE, VER_SUBREL)
641
642 if addOpts:
cb56afc4
RD
643 port = WXPORT
644 if port == "msw": port = "win32"
d48c1c64
RD
645 ep += "-%s-%s" % (WXPORT, (UNICODE and 'unicode' or 'ansi'))
646
647 if FLAVOUR:
648 ep += "-" + FLAVOUR
649
650 return ep
651
1128a89b
RD
652#----------------------------------------------------------------------
653# sanity checks
654
655if CORE_ONLY:
656 BUILD_GLCANVAS = 0
657 BUILD_OGL = 0
658 BUILD_STC = 0
1128a89b
RD
659 BUILD_GIZMOS = 0
660 BUILD_DLLWIDGET = 0
1128a89b 661 BUILD_ACTIVEX = 0
4a40657b 662 BUILD_ANIMATE = 0
1128a89b
RD
663
664if debug:
665 FINAL = 0
666 HYBRID = 0
667
668if FINAL:
669 HYBRID = 0
670
85245f48 671if UNICODE and WXPORT not in ['msw', 'gtk2', 'mac']:
1128a89b
RD
672 raise SystemExit, "UNICODE mode not currently supported on this WXPORT: "+WXPORT
673
674
675if CONTRIBS_INC:
676 CONTRIBS_INC = [ CONTRIBS_INC ]
677else:
678 CONTRIBS_INC = []
679
680
681#----------------------------------------------------------------------
682# Setup some platform specific stuff
683#----------------------------------------------------------------------
684
685if os.name == 'nt':
686 # Set compile flags and such for MSVC. These values are derived
687 # from the wxWidgets makefiles for MSVC, other compilers settings
688 # will probably vary...
689 if os.environ.has_key('WXWIN'):
690 WXDIR = os.environ['WXWIN']
691 else:
692 msg("WARNING: WXWIN not set in environment.")
693 WXDIR = '..' # assumes in CVS tree
694 WXPLAT = '__WXMSW__'
695 GENDIR = 'msw'
543cba02 696
1128a89b
RD
697 includes = ['include', 'src',
698 opj(WXDIR, 'lib', 'vc_dll', 'msw' + libFlag()),
699 opj(WXDIR, 'include'),
700 opj(WXDIR, 'contrib', 'include'),
701 ]
702
703 defines = [ ('WIN32', None),
704 ('_WINDOWS', None),
705
706 (WXPLAT, None),
707 ('WXUSINGDLL', '1'),
708
77bef39a 709 ('SWIG_TYPE_TABLE', WXPYTHON_TYPE_TABLE),
214c4fbe 710 ('SWIG_PYTHON_OUTPUT_TUPLE', None),
1128a89b
RD
711 ('WXP_USE_THREAD', '1'),
712 ]
713
714 if UNDEF_NDEBUG:
715 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
716
717 if HYBRID:
718 defines.append( ('__NO_VC_CRTDBG__', None) )
719
720 if not FINAL or HYBRID:
721 defines.append( ('__WXDEBUG__', None) )
722
c6abf0ef
VZ
723 if UNICODE:
724 defines.append( ('wxUSE_UNICODE', 1) )
725
1128a89b 726 libdirs = [ opj(WXDIR, 'lib', 'vc_dll') ]
cb56afc4
RD
727 if MONOLITHIC:
728 libs = makeLibName('')
729 else:
730 libs = [ 'wxbase' + WXDLLVER + libFlag(),
731 'wxbase' + WXDLLVER + libFlag() + '_net',
732 'wxbase' + WXDLLVER + libFlag() + '_xml',
733 makeLibName('core')[0],
734 makeLibName('adv')[0],
735 makeLibName('html')[0],
736 makeLibName('xrc')[0],
737 ]
1128a89b
RD
738
739 libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32',
740 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
741 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
742 'advapi32', 'wsock32']
743
744
745 cflags = [ '/Gy',
746 # '/GX-' # workaround for internal compiler error in MSVC on some machines
747 ]
748 lflags = None
749
750 # Other MSVC flags...
751 # Too bad I don't remember why I was playing with these, can they be removed?
752 if FINAL:
753 pass #cflags = cflags + ['/O1']
754 elif HYBRID :
755 pass #cflags = cflags + ['/Ox']
756 else:
757 pass # cflags = cflags + ['/Od', '/Z7']
758 # lflags = ['/DEBUG', ]
759
760
761
762#----------------------------------------------------------------------
763
764elif os.name == 'posix':
765 WXDIR = '..'
766 includes = ['include', 'src']
77bef39a 767 defines = [('SWIG_TYPE_TABLE', WXPYTHON_TYPE_TABLE),
214c4fbe 768 ('SWIG_PYTHON_OUTPUT_TUPLE', None),
1128a89b
RD
769 ('WXP_USE_THREAD', '1'),
770 ]
771 if UNDEF_NDEBUG:
772 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
773
774 Verify_WX_CONFIG()
775
776 libdirs = []
777 libs = []
778
779 # If you get unresolved symbol errors on Solaris and are using gcc, then
780 # uncomment this block to add the right flags to the link step and build
781 # again.
782 ## if os.uname()[0] == 'SunOS':
a432a02b 783 ## import commands
1128a89b
RD
784 ## libs.append('gcc')
785 ## libdirs.append(commands.getoutput("gcc -print-search-dirs | grep '^install' | awk '{print $2}'")[:-1])
786
787 cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1]
788 cflags = cflags.split()
789 if debug:
790 cflags.append('-g')
791 cflags.append('-O0')
792 else:
793 cflags.append('-O3')
794
795 lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1]
796 lflags = lflags.split()
797
798 WXBASENAME = os.popen(WX_CONFIG + ' --basename').read()[:-1]
799 WXRELEASE = os.popen(WX_CONFIG + ' --release').read()[:-1]
800 WXPREFIX = os.popen(WX_CONFIG + ' --prefix').read()[:-1]
801
802
2cbbc68d 803 if sys.platform[:6] == "darwin" and WXPORT == 'mac':
1128a89b
RD
804 # Flags and such for a Darwin (Max OS X) build of Python
805 WXPLAT = '__WXMAC__'
806 GENDIR = 'mac'
807 libs = ['stdc++']
808 NO_SCRIPTS = 1
809
810
811 else:
812 # Set flags for other Unix type platforms
813 GENDIR = WXPORT
814
815 if WXPORT == 'gtk':
816 WXPLAT = '__WXGTK__'
817 portcfg = os.popen('gtk-config --cflags', 'r').read()[:-1]
818 elif WXPORT == 'gtk2':
819 WXPLAT = '__WXGTK__'
820 GENDIR = 'gtk' # no code differences so use the same generated sources
821 portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1]
822 BUILD_BASE = BUILD_BASE + '-' + WXPORT
823 elif WXPORT == 'x11':
824 WXPLAT = '__WXX11__'
825 portcfg = ''
826 BUILD_BASE = BUILD_BASE + '-' + WXPORT
827 else:
828 raise SystemExit, "Unknown WXPORT value: " + WXPORT
829
830 cflags += portcfg.split()
831
832 # Some distros (e.g. Mandrake) put libGLU in /usr/X11R6/lib, but
833 # wx-config doesn't output that for some reason. For now, just
834 # add it unconditionally but we should really check if the lib is
835 # really found there or wx-config should be fixed.
836 libdirs.append("/usr/X11R6/lib")
837
838
839 # Move the various -I, -D, etc. flags we got from the *config scripts
840 # into the distutils lists.
841 cflags = adjustCFLAGS(cflags, defines, includes)
842 lflags = adjustLFLAGS(lflags, libdirs, libs)
843
844
845#----------------------------------------------------------------------
846else:
847 raise 'Sorry, platform not supported...'
848
849
850#----------------------------------------------------------------------
851# post platform setup checks and tweaks, create the full version string
852#----------------------------------------------------------------------
853
854if UNICODE:
855 BUILD_BASE = BUILD_BASE + '.unicode'
cb56afc4 856 ##VER_FLAGS += 'u'
1128a89b 857
96acd0c1 858if os.path.exists('DAILY_BUILD'):
4b2826e5
RD
859
860 VER_FLAGS += '.' + open('DAILY_BUILD').read().strip()
1128a89b
RD
861
862VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE,
863 VER_SUBREL, VER_FLAGS)
864
865
866#----------------------------------------------------------------------
867# SWIG defaults
868#----------------------------------------------------------------------
869
d1b3d685 870# *.i files could live in the wxWidgets/wxPython/src dir, or in
f35d1a03
RD
871# a subdirectory of the devel package. Let's specify both
872# dirs as includes so we don't have to guess which is correct.
873
874wxfilesdir = ""
bbc916e2 875i_subdir = opj("include", getExtraPath(), "wx", "wxPython", "i_files")
f35d1a03
RD
876if os.name != "nt":
877 wxfilesdir = opj(WXPREFIX, i_subdir)
878else:
879 wxfilesdir = opj(WXPY_SRC, i_subdir)
d1b3d685 880
f35d1a03
RD
881i_files_includes = [ '-I' + opj(WXPY_SRC, 'src'),
882 '-I' + wxfilesdir ]
f35d1a03 883
1128a89b
RD
884swig_cmd = SWIG
885swig_force = force
886swig_args = ['-c++',
214c4fbe 887 #'-Wall',
1128a89b 888 '-python',
1128a89b
RD
889 '-new_repr',
890 '-modern',
1128a89b 891 '-D'+WXPLAT,
f35d1a03 892 ] + i_files_includes
ace78e27
RD
893
894if USE_SWIG:
895 SVER = swig_version()
896 if int(SVER[-2:]) >= 29:
897 swig_args += [ '-fastdispatch',
898 '-fvirtual',
899 '-fastinit',
900 '-fastunpack',
0ae3258d 901 #'-outputtuple', Currently setting this with a -D define above
ace78e27 902 ]
f35d1a03 903
1128a89b
RD
904if UNICODE:
905 swig_args.append('-DwxUSE_UNICODE')
906
d07d2bc9
RD
907if FULL_DOCS:
908 swig_args.append('-D_DO_FULL_DOCS')
909
910
73a22369 911swig_deps = [ opj(WXPY_SRC, 'src/my_typemaps.i'),
1b8c7ba6 912 opj(WXPY_SRC, 'src/pyfragments.swg'),
1128a89b
RD
913 ]
914
915depends = [ #'include/wx/wxPython/wxPython.h',
916 #'include/wx/wxPython/wxPython_int.h',
917 #'src/pyclasses.h',
918 ]
919
920#----------------------------------------------------------------------
c278542b
RD
921
922####################################
923# BuildRenamers
924####################################
925
bbc916e2 926import pprint, shutil
c278542b
RD
927try:
928 import libxml2
929 FOUND_LIBXML2 = True
930except ImportError:
931 FOUND_LIBXML2 = False
932
933#---------------------------------------------------------------------------
934
c278542b
RD
935renamerTemplateStart = """\
936// A bunch of %rename directives generated by BuildRenamers in config.py
937// in order to remove the wx prefix from all global scope names.
938
939#ifndef BUILDING_RENAMERS
940
941"""
942
943renamerTemplateEnd = """
944#endif
945"""
946
947wxPythonTemplateStart = """\
948## This file reverse renames symbols in the wx package to give
949## them their wx prefix again, for backwards compatibility.
950##
951## Generated by BuildRenamers in config.py
952
953# This silly stuff here is so the wxPython.wx module doesn't conflict
954# with the wx package. We need to import modules from the wx package
955# here, then we'll put the wxPython.wx entry back in sys.modules.
956import sys
957_wx = None
958if sys.modules.has_key('wxPython.wx'):
959 _wx = sys.modules['wxPython.wx']
960 del sys.modules['wxPython.wx']
961
962import wx.%s
963
964sys.modules['wxPython.wx'] = _wx
965del sys, _wx
966
967
968# Now assign all the reverse-renamed names:
969"""
970
971wxPythonTemplateEnd = """
972
973"""
974
975
976
977#---------------------------------------------------------------------------
978class BuildRenamers:
979 def run(self, destdir, modname, xmlfile, wxPythonDir="wxPython"):
980
981 assert FOUND_LIBXML2, "The libxml2 module is required to use the BuildRenamers functionality."
982
983 if not os.path.exists(wxPythonDir):
984 os.mkdir(wxPythonDir)
985
986 swigDest = os.path.join(destdir, "_"+modname+"_rename.i")
987 pyDest = os.path.join(wxPythonDir, modname + '.py')
988
989 swigDestTemp = tempfile.mktemp('.tmp')
990 swigFile = open(swigDestTemp, "w")
991 swigFile.write(renamerTemplateStart)
992
993 pyDestTemp = tempfile.mktemp('.tmp')
994 pyFile = open(pyDestTemp, "w")
995 pyFile.write(wxPythonTemplateStart % modname)
996
997 print "Parsing XML and building renamers..."
998 self.processXML(xmlfile, modname, swigFile, pyFile)
999
1000 self.checkOtherNames(pyFile, modname,
1001 os.path.join(destdir, '_'+modname+'_reverse.txt'))
1002 pyFile.write(wxPythonTemplateEnd)
1003 pyFile.close()
1004
1005 swigFile.write(renamerTemplateEnd)
1006 swigFile.close()
1007
1008 # Compare the files just created with the existing one and
1009 # blow away the old one if they are different.
1010 for dest, temp in [(swigDest, swigDestTemp),
1011 (pyDest, pyDestTemp)]:
bbc916e2
KO
1012 # NOTE: we don't use shutil.move() because it was introduced
1013 # in Python 2.3. Eventually we can switch to it when people
1014 # stop building using 2.2.
c278542b 1015 if not os.path.exists(dest):
bbc916e2 1016 shutil.copyfile(temp, dest)
c278542b
RD
1017 elif open(dest).read() != open(temp).read():
1018 os.unlink(dest)
bbc916e2 1019 shutil.copyfile(temp, dest)
c278542b
RD
1020 else:
1021 print dest + " not changed."
1022 os.unlink(temp)
1023
1024 #---------------------------------------------------------------------------
1025
1026
1027 def GetAttr(self, node, name):
1028 path = "./attributelist/attribute[@name='%s']/@value" % name
1029 n = node.xpathEval2(path)
1030 if len(n):
1031 return n[0].content
1032 else:
1033 return None
1034
1035
1036 def processXML(self, xmlfile, modname, swigFile, pyFile):
1037
1038 topnode = libxml2.parseFile(xmlfile).children
1039
1040 # remove any import nodes as we don't need to do renamers for symbols found therein
1041 imports = topnode.xpathEval2("*/import")
1042 for n in imports:
1043 n.unlinkNode()
1044 n.freeNode()
1045
1046 # do a depth first iteration over what's left
1047 for node in topnode:
1048 doRename = False
c278542b
RD
1049 addWX = False
1050 revOnly = False
1051
1052
1053 if node.name == "class":
1054 lastClassName = name = self.GetAttr(node, "name")
1055 lastClassSymName = sym_name = self.GetAttr(node, "sym_name")
1056 doRename = True
c278542b
RD
1057 if sym_name != name:
1058 name = sym_name
1059 addWX = True
1060
1061 # renamed constructors
1062 elif node.name == "constructor":
1063 name = self.GetAttr(node, "name")
1064 sym_name = self.GetAttr(node, "sym_name")
1065 if sym_name != name:
1066 name = sym_name
1067 addWX = True
1068 doRename = True
1069
1070 # only enumitems at the top level
1071 elif node.name == "enumitem" and node.parent.parent.name == "include":
1072 name = self.GetAttr(node, "name")
1073 sym_name = self.GetAttr(node, "sym_name")
1074 doRename = True
1075
1076
1077 elif node.name in ["cdecl", "constant"]:
1078 name = self.GetAttr(node, "name")
1079 sym_name = self.GetAttr(node, "sym_name")
1080 toplevel = node.parent.name == "include"
1081
1082 # top-level functions
1083 if toplevel and self.GetAttr(node, "view") == "globalfunctionHandler":
1084 doRename = True
1085
1086 # top-level global vars
1087 elif toplevel and self.GetAttr(node, "feature_immutable") == "1":
1088 doRename = True
1089
1090 # static methods
1091 elif self.GetAttr(node, "view") == "staticmemberfunctionHandler":
1092 name = lastClassName + '_' + name
1093 sym_name = lastClassSymName + '_' + sym_name
1094 # only output the reverse renamer in this case
1095 doRename = revOnly = True
1096
1097 if doRename and name != sym_name:
1098 name = sym_name
1099 addWX = True
1100
1101
1102 if doRename and name:
1103 old = new = name
1104 if old.startswith('wx') and not old.startswith('wxEVT_'):
1105 # remove all wx prefixes except wxEVT_ and write a %rename directive for it
1106 new = old[2:]
1107 if not revOnly:
1108 swigFile.write("%%rename(%s) %35s;\n" % (new, old))
1109
1110 # Write assignments to import into the old wxPython namespace
1111 if addWX and not old.startswith('wx'):
1112 old = 'wx'+old
1113 pyFile.write("%s = wx.%s.%s\n" % (old, modname, new))
c278542b
RD
1114
1115
1116 #---------------------------------------------------------------------------
1117
1118 def checkOtherNames(self, pyFile, moduleName, filename):
1119 if os.path.exists(filename):
1120 prefixes = []
1121 for line in file(filename):
1122 if line.endswith('\n'):
1123 line = line[:-1]
1124 if line and not line.startswith('#'):
1125 if line.endswith('*'):
1126 prefixes.append(line[:-1])
1127 elif line.find('=') != -1:
1128 pyFile.write("%s\n" % line)
1129 else:
1130 wxname = 'wx' + line
1131 if line.startswith('wx') or line.startswith('WX') or line.startswith('EVT'):
1132 wxname = line
1133 pyFile.write("%s = wx.%s.%s\n" % (wxname, moduleName, line))
1134
1135 if prefixes:
1136 pyFile.write(
1137 "\n\nd = globals()\nfor k, v in wx.%s.__dict__.iteritems():"
1138 % moduleName)
1139 first = True
1140 for p in prefixes:
1141 if first:
1142 pyFile.write("\n if ")
1143 first = False
1144 else:
1145 pyFile.write("\n elif ")
1146 pyFile.write("k.startswith('%s'):\n d[k] = v" % p)
1147 pyFile.write("\ndel d, k, v\n\n")
1148
1149
1150#---------------------------------------------------------------------------