]> git.saurik.com Git - wxWidgets.git/blame - wxPython/config.py
Applied changes by Bartlomiej Gorny for recent files and style panel fix.
[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
40VER_MINOR = 5
1a014e50
RD
41VER_RELEASE = 3
42VER_SUBREL = 0 # wxPython release num for x.y.z release of wxWidgets
733cea93 43VER_FLAGS = "p" # release flags, such as prerelease num, unicode, 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
58feel (by using the native widgets) on the platforms it is supported
59on.
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
82BUILD_OGL = 1 # If true, build the contrib/ogl extension module
83BUILD_STC = 1 # If true, build the contrib/stc extension module
1128a89b
RD
84BUILD_GIZMOS = 1 # Build a module for the gizmos contrib library
85BUILD_DLLWIDGET = 0# Build a module that enables unknown wx widgets
86 # to be loaded from a DLL and to be used from Python.
87
88 # Internet Explorer wrapper (experimental)
89BUILD_IEWIN = (os.name == 'nt')
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
132 # choose a specific version if more than one are
133 # installed.
134
135FLAVOUR = "" # Optional flavour string to be appended to VERSION
136 # in MULTIVERSION installs
d48c1c64 137
b6536d60
RD
138EP_ADD_OPTS = 0 # When doing MULTIVERSION installs the wx port and
139 # ansi/unicode settings can optionally be added to the
140 # subdir path used in site-packages
141
1128a89b
RD
142WX_CONFIG = None # Usually you shouldn't need to touch this, but you can set
143 # it to pass an alternate version of wx-config or alternate
144 # flags, eg. as required by the .deb in-tree build. By
145 # default a wx-config command will be assembled based on
146 # version, port, etc. and it will be looked for on the
147 # default $PATH.
148
5924e48d 149WXPORT = 'gtk2' # On Linux/Unix there are several ports of wxWidgets available.
1128a89b
RD
150 # Setting this value lets you select which will be used for
151 # the wxPython build. Possibilites are 'gtk', 'gtk2' and
152 # 'x11'. Curently only gtk and gtk2 works.
153
154BUILD_BASE = "build" # Directory to use for temporary build files.
155 # This name will be appended to if the WXPORT or
156 # the UNICODE flags are set to non-standard
157 # values. See below.
158
159
160CONTRIBS_INC = "" # A dir to add as an -I flag when compiling the contribs
161
162
163# Some MSW build settings
164
cb56afc4
RD
165MONOLITHIC = 1 # The core wxWidgets lib can be built as either a
166 # single monolithic DLL or as a collection of DLLs.
167 # This flag controls which set of libs will be used
168 # on Windows. (For other platforms it is automatic
169 # via using wx-config.)
170
171FINAL = 0 # Will use the release version of the wxWidgets libs on MSW.
172
173HYBRID = 1 # Will use the "hybrid" version of the wxWidgets
174 # libs on MSW. A "hybrid" build is one that is
175 # basically a release build, but that also defines
176 # __WXDEBUG__ to activate the runtime checks and
177 # assertions in the library. When any of these is
178 # triggered it is turned into a Python exception so
179 # this is a very useful feature to have turned on.
1128a89b 180
1128a89b
RD
181
182 # Version part of wxWidgets LIB/DLL names
183WXDLLVER = '%d%d' % (VER_MAJOR, VER_MINOR)
184
73a22369
RD
185WXPY_SRC = '.' # Assume we're in the source tree already, but allow the
186 # user to change it, particularly for extension building.
187
1128a89b
RD
188
189#----------------------------------------------------------------------
190
191def msg(text):
fb3d05e9 192 if hasattr(sys, 'setup_is_main') and sys.setup_is_main:
1128a89b
RD
193 print text
194
195
196def opj(*args):
73a22369 197 path = os.path.join(*args)
1128a89b
RD
198 return os.path.normpath(path)
199
200
201def libFlag():
202 if FINAL:
203 rv = ''
204 elif HYBRID:
205 rv = 'h'
206 else:
207 rv = 'd'
208 if UNICODE:
209 rv = 'u' + rv
210 return rv
211
212
213#----------------------------------------------------------------------
214# Some other globals
215#----------------------------------------------------------------------
216
217PKGDIR = 'wx'
218wxpExtensions = []
219DATA_FILES = []
220CLEANUP = []
221
222force = '--force' in sys.argv or '-f' in sys.argv
223debug = '--debug' in sys.argv or '-g' in sys.argv
224cleaning = 'clean' in sys.argv
225
226
227# change the PORT default for wxMac
228if sys.platform[:6] == "darwin":
229 WXPORT = 'mac'
230
231# and do the same for wxMSW, just for consistency
232if os.name == 'nt':
233 WXPORT = 'msw'
234
235
236#----------------------------------------------------------------------
237# Check for build flags on the command line
238#----------------------------------------------------------------------
239
240# Boolean (int) flags
38b97c15 241for flag in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC',
1128a89b
RD
242 'BUILD_GIZMOS', 'BUILD_DLLWIDGET', 'BUILD_IEWIN', 'BUILD_ACTIVEX',
243 'CORE_ONLY', 'PREP_ONLY', 'USE_SWIG', 'UNICODE',
244 'UNDEF_NDEBUG', 'NO_SCRIPTS', 'NO_HEADERS', 'BUILD_RENAMERS',
b6536d60 245 'FULL_DOCS', 'INSTALL_MULTIVERSION', 'EP_ADD_OPTS',
cb56afc4 246 'MONOLITHIC', 'FINAL', 'HYBRID', ]:
1128a89b
RD
247 for x in range(len(sys.argv)):
248 if sys.argv[x].find(flag) == 0:
249 pos = sys.argv[x].find('=') + 1
250 if pos > 0:
251 vars()[flag] = eval(sys.argv[x][pos:])
252 sys.argv[x] = ''
253
254# String options
255for option in ['WX_CONFIG', 'WXDLLVER', 'BUILD_BASE', 'WXPORT', 'SWIG',
d48c1c64
RD
256 'CONTRIBS_INC', 'WXPY_SRC', 'FLAVOUR',
257 ]:
1128a89b
RD
258 for x in range(len(sys.argv)):
259 if sys.argv[x].find(option) == 0:
260 pos = sys.argv[x].find('=') + 1
261 if pos > 0:
262 vars()[option] = sys.argv[x][pos:]
263 sys.argv[x] = ''
264
265sys.argv = filter(None, sys.argv)
266
267
268#----------------------------------------------------------------------
269# some helper functions
270#----------------------------------------------------------------------
271
272def Verify_WX_CONFIG():
e9019d1c
RD
273 """ Called below for the builds that need wx-config, if WX_CONFIG
274 is not set then determins the flags needed based on build
275 options and searches for wx-config on the PATH.
1128a89b
RD
276 """
277 # if WX_CONFIG hasn't been set to an explicit value then construct one.
278 global WX_CONFIG
279 if WX_CONFIG is None:
adce89c3 280 WX_CONFIG='wx-config'
1128a89b
RD
281 port = WXPORT
282 if port == "x11":
283 port = "x11univ"
e9019d1c
RD
284 flags = ' --toolkit=%s' % port
285 flags += ' --unicode=%s' % (UNICODE and 'yes' or 'no')
286 flags += ' --version=%s.%s' % (VER_MAJOR, VER_MINOR)
1128a89b
RD
287
288 searchpath = os.environ["PATH"]
289 for p in searchpath.split(':'):
e9019d1c 290 fp = os.path.join(p, 'wx-config')
1128a89b
RD
291 if os.path.exists(fp) and os.access(fp, os.X_OK):
292 # success
293 msg("Found wx-config: " + fp)
e9019d1c
RD
294 msg(" Using flags: " + flags)
295 WX_CONFIG = fp + flags
b6536d60
RD
296 if hasattr(sys, 'setup_is_main') and not sys.setup_is_main:
297 WX_CONFIG += " 2>/dev/null "
1128a89b
RD
298 break
299 else:
e9019d1c
RD
300 msg("ERROR: WX_CONFIG not specified and wx-config not found on the $PATH")
301 # should we exit?
1128a89b 302
e9019d1c
RD
303 # TODO: exeucte WX_CONFIG --list and verify a matching config is found
304
1128a89b 305
54f9ee45
RD
306def run_swig(files, dir, gendir, package, USE_SWIG, force, swig_args,
307 swig_deps=[], add_under=False):
1128a89b
RD
308 """Run SWIG the way I want it done"""
309
310 if USE_SWIG and not os.path.exists(os.path.join(dir, gendir)):
311 os.mkdir(os.path.join(dir, gendir))
312
313 if USE_SWIG and not os.path.exists(os.path.join("docs", "xml-raw")):
73a22369
RD
314 if not os.path.exists("docs"):
315 os.mkdir("docs")
1128a89b
RD
316 os.mkdir(os.path.join("docs", "xml-raw"))
317
318 sources = []
319
54f9ee45
RD
320 if add_under: pre = '_'
321 else: pre = ''
322
1128a89b
RD
323 for file in files:
324 basefile = os.path.splitext(file)[0]
325 i_file = os.path.join(dir, file)
54f9ee45
RD
326 py_file = os.path.join(dir, gendir, pre+basefile+'.py')
327 cpp_file = os.path.join(dir, gendir, pre+basefile+'_wrap.cpp')
fda33067 328 xml_file = os.path.join("docs", "xml-raw", basefile+pre+'_swig.xml')
1128a89b 329
54f9ee45
RD
330 if add_under:
331 interface = ['-interface', '_'+basefile+'_']
332 else:
333 interface = []
334
1128a89b
RD
335 sources.append(cpp_file)
336
337 if not cleaning and USE_SWIG:
338 for dep in swig_deps:
339 if newer(dep, py_file) or newer(dep, cpp_file):
340 force = 1
341 break
342
343 if force or newer(i_file, py_file) or newer(i_file, cpp_file):
344 ## we need forward slashes here even on win32
345 #cpp_file = opj(cpp_file) #'/'.join(cpp_file.split('\\'))
346 #i_file = opj(i_file) #'/'.join(i_file.split('\\'))
347
348 if BUILD_RENAMERS:
1128a89b
RD
349 xmltemp = tempfile.mktemp('.xml')
350
351 # First run swig to produce the XML file, adding
352 # an extra -D that prevents the old rename
353 # directives from being used
354 cmd = [ swig_cmd ] + swig_args + \
355 [ '-DBUILDING_RENAMERS', '-xmlout', xmltemp ] + \
356 ['-I'+dir, '-o', cpp_file, i_file]
357 msg(' '.join(cmd))
358 spawn(cmd)
359
360 # Next run build_renamers to process the XML
73a22369
RD
361 myRenamer = BuildRenamers()
362 myRenamer.run(dir, pre+basefile, xmltemp)
1128a89b
RD
363 os.remove(xmltemp)
364
365 # Then run swig for real
54f9ee45
RD
366 cmd = [ swig_cmd ] + swig_args + interface + \
367 ['-I'+dir, '-o', cpp_file, '-xmlout', xml_file, i_file]
1128a89b
RD
368 msg(' '.join(cmd))
369 spawn(cmd)
370
371
372 # copy the generated python file to the package directory
373 copy_file(py_file, package, update=not force, verbose=0)
374 CLEANUP.append(opj(package, os.path.basename(py_file)))
375
376 return sources
377
378
379
380# Specializations of some distutils command classes
381class wx_smart_install_data(distutils.command.install_data.install_data):
382 """need to change self.install_dir to the actual library dir"""
383 def run(self):
384 install_cmd = self.get_finalized_command('install')
385 self.install_dir = getattr(install_cmd, 'install_lib')
386 return distutils.command.install_data.install_data.run(self)
387
388
389class wx_extra_clean(distutils.command.clean.clean):
390 """
391 Also cleans stuff that this setup.py copies itself. If the
392 --all flag was used also searches for .pyc, .pyd, .so files
393 """
394 def run(self):
395 from distutils import log
396 from distutils.filelist import FileList
397 global CLEANUP
398
399 distutils.command.clean.clean.run(self)
400
401 if self.all:
402 fl = FileList()
403 fl.include_pattern("*.pyc", 0)
404 fl.include_pattern("*.pyd", 0)
405 fl.include_pattern("*.so", 0)
406 CLEANUP += fl.files
407
408 for f in CLEANUP:
409 if os.path.isdir(f):
410 try:
411 if not self.dry_run and os.path.exists(f):
412 os.rmdir(f)
413 log.info("removing '%s'", f)
414 except IOError:
415 log.warning("unable to remove '%s'", f)
416
417 else:
418 try:
419 if not self.dry_run and os.path.exists(f):
420 os.remove(f)
421 log.info("removing '%s'", f)
422 except IOError:
423 log.warning("unable to remove '%s'", f)
424
425
426
d48c1c64
RD
427class wx_install(distutils.command.install.install):
428 """
429 Turns off install_path_file
430 """
431 def initialize_options(self):
432 distutils.command.install.install.initialize_options(self)
433 self.install_path_file = 0
434
435
1128a89b
RD
436class wx_install_headers(distutils.command.install_headers.install_headers):
437 """
438 Install the header files to the WXPREFIX, with an extra dir per
439 filename too
440 """
38b97c15 441 def initialize_options(self):
1128a89b
RD
442 self.root = None
443 distutils.command.install_headers.install_headers.initialize_options(self)
444
38b97c15 445 def finalize_options(self):
1128a89b
RD
446 self.set_undefined_options('install', ('root', 'root'))
447 distutils.command.install_headers.install_headers.finalize_options(self)
448
449 def run(self):
450 if os.name == 'nt':
451 return
452 headers = self.distribution.headers
453 if not headers:
454 return
455
456 root = self.root
862b5362 457 if root is None or WXPREFIX.startswith(root):
1128a89b
RD
458 root = ''
459 for header, location in headers:
e9019d1c
RD
460 install_dir = os.path.normpath(root +
461 WXPREFIX +
462 '/include/wx-%d.%d/wx' % (VER_MAJOR, VER_MINOR) +
463 location)
1128a89b
RD
464 self.mkpath(install_dir)
465 (out, _) = self.copy_file(header, install_dir)
466 self.outfiles.append(out)
467
468
469
470
471def build_locale_dir(destdir, verbose=1):
472 """Build a locale dir under the wxPython package for MSW"""
473 moFiles = glob.glob(opj(WXDIR, 'locale', '*.mo'))
474 for src in moFiles:
475 lang = os.path.splitext(os.path.basename(src))[0]
476 dest = opj(destdir, lang, 'LC_MESSAGES')
477 mkpath(dest, verbose=verbose)
478 copy_file(src, opj(dest, 'wxstd.mo'), update=1, verbose=verbose)
479 CLEANUP.append(opj(dest, 'wxstd.mo'))
480 CLEANUP.append(dest)
481
482
483def build_locale_list(srcdir):
484 # get a list of all files under the srcdir, to be used for install_data
485 def walk_helper(lst, dirname, files):
486 for f in files:
487 filename = opj(dirname, f)
488 if not os.path.isdir(filename):
489 lst.append( (dirname, [filename]) )
490 file_list = []
491 os.path.walk(srcdir, walk_helper, file_list)
492 return file_list
493
494
495def find_data_files(srcdir, *wildcards):
496 # get a list of all files under the srcdir matching wildcards,
497 # returned in a format to be used for install_data
498
499 def walk_helper(arg, dirname, files):
500 names = []
501 lst, wildcards = arg
502 for wc in wildcards:
503 for f in files:
504 filename = opj(dirname, f)
505 if fnmatch.fnmatch(filename, wc) and not os.path.isdir(filename):
506 names.append(filename)
507 if names:
508 lst.append( (dirname, names ) )
509
510 file_list = []
511 os.path.walk(srcdir, walk_helper, (file_list, wildcards))
512 return file_list
513
514
515def makeLibName(name):
516 if os.name == 'posix':
517 libname = '%s_%s-%s' % (WXBASENAME, name, WXRELEASE)
cb56afc4 518 elif name:
1128a89b 519 libname = 'wxmsw%s%s_%s' % (WXDLLVER, libFlag(), name)
cb56afc4
RD
520 else:
521 libname = 'wxmsw%s%s' % (WXDLLVER, libFlag())
1128a89b
RD
522 return [libname]
523
524
525
526def adjustCFLAGS(cflags, defines, includes):
38b97c15 527 '''Extract the raw -I, -D, and -U flags and put them into
1128a89b
RD
528 defines and includes as needed.'''
529 newCFLAGS = []
530 for flag in cflags:
531 if flag[:2] == '-I':
532 includes.append(flag[2:])
533 elif flag[:2] == '-D':
534 flag = flag[2:]
535 if flag.find('=') == -1:
536 defines.append( (flag, None) )
537 else:
538 defines.append( tuple(flag.split('=')) )
539 elif flag[:2] == '-U':
540 defines.append( (flag[2:], ) )
541 else:
542 newCFLAGS.append(flag)
543 return newCFLAGS
544
545
546
547def adjustLFLAGS(lfags, libdirs, libs):
d48c1c64 548 '''Extract the -L and -l flags and put them in libdirs and libs as needed'''
1128a89b
RD
549 newLFLAGS = []
550 for flag in lflags:
551 if flag[:2] == '-L':
552 libdirs.append(flag[2:])
553 elif flag[:2] == '-l':
554 libs.append(flag[2:])
555 else:
556 newLFLAGS.append(flag)
557
558 return newLFLAGS
559
d48c1c64
RD
560
561
562def getExtraPath(shortVer=True, addOpts=False):
563 """Get the dirname that wxPython will be installed under."""
564
565 if shortVer:
566 # short version, just Major.Minor
567 ep = "wx-%d.%d" % (VER_MAJOR, VER_MINOR)
cb56afc4 568
d48c1c64 569 # plus release if minor is odd
cb56afc4
RD
570 #if VER_MINOR % 2 == 1:
571 # ep += ".%d" % VER_RELEASE
572
d48c1c64
RD
573 else:
574 # long version, full version
575 ep = "wx-%d.%d.%d.%d" % (VER_MAJOR, VER_MINOR, VER_RELEASE, VER_SUBREL)
576
577 if addOpts:
cb56afc4
RD
578 port = WXPORT
579 if port == "msw": port = "win32"
d48c1c64
RD
580 ep += "-%s-%s" % (WXPORT, (UNICODE and 'unicode' or 'ansi'))
581
582 if FLAVOUR:
583 ep += "-" + FLAVOUR
584
585 return ep
586
587
588
1128a89b
RD
589#----------------------------------------------------------------------
590# sanity checks
591
592if CORE_ONLY:
593 BUILD_GLCANVAS = 0
594 BUILD_OGL = 0
595 BUILD_STC = 0
1128a89b
RD
596 BUILD_GIZMOS = 0
597 BUILD_DLLWIDGET = 0
598 BUILD_IEWIN = 0
599 BUILD_ACTIVEX = 0
600
601if debug:
602 FINAL = 0
603 HYBRID = 0
604
605if FINAL:
606 HYBRID = 0
607
608if UNICODE and WXPORT not in ['msw', 'gtk2']:
609 raise SystemExit, "UNICODE mode not currently supported on this WXPORT: "+WXPORT
610
611
612if CONTRIBS_INC:
613 CONTRIBS_INC = [ CONTRIBS_INC ]
614else:
615 CONTRIBS_INC = []
616
617
618#----------------------------------------------------------------------
619# Setup some platform specific stuff
620#----------------------------------------------------------------------
621
622if os.name == 'nt':
623 # Set compile flags and such for MSVC. These values are derived
624 # from the wxWidgets makefiles for MSVC, other compilers settings
625 # will probably vary...
626 if os.environ.has_key('WXWIN'):
627 WXDIR = os.environ['WXWIN']
628 else:
629 msg("WARNING: WXWIN not set in environment.")
630 WXDIR = '..' # assumes in CVS tree
631 WXPLAT = '__WXMSW__'
632 GENDIR = 'msw'
633
634 includes = ['include', 'src',
635 opj(WXDIR, 'lib', 'vc_dll', 'msw' + libFlag()),
636 opj(WXDIR, 'include'),
637 opj(WXDIR, 'contrib', 'include'),
638 ]
639
640 defines = [ ('WIN32', None),
641 ('_WINDOWS', None),
642
643 (WXPLAT, None),
644 ('WXUSINGDLL', '1'),
645
646 ('SWIG_GLOBAL', None),
647 ('WXP_USE_THREAD', '1'),
648 ]
649
650 if UNDEF_NDEBUG:
651 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
652
653 if HYBRID:
654 defines.append( ('__NO_VC_CRTDBG__', None) )
655
656 if not FINAL or HYBRID:
657 defines.append( ('__WXDEBUG__', None) )
658
659 libdirs = [ opj(WXDIR, 'lib', 'vc_dll') ]
cb56afc4
RD
660 if MONOLITHIC:
661 libs = makeLibName('')
662 else:
663 libs = [ 'wxbase' + WXDLLVER + libFlag(),
664 'wxbase' + WXDLLVER + libFlag() + '_net',
665 'wxbase' + WXDLLVER + libFlag() + '_xml',
666 makeLibName('core')[0],
667 makeLibName('adv')[0],
668 makeLibName('html')[0],
669 makeLibName('xrc')[0],
670 ]
1128a89b
RD
671
672 libs = libs + ['kernel32', 'user32', 'gdi32', 'comdlg32',
673 'winspool', 'winmm', 'shell32', 'oldnames', 'comctl32',
674 'odbc32', 'ole32', 'oleaut32', 'uuid', 'rpcrt4',
675 'advapi32', 'wsock32']
676
677
678 cflags = [ '/Gy',
679 # '/GX-' # workaround for internal compiler error in MSVC on some machines
680 ]
681 lflags = None
682
683 # Other MSVC flags...
684 # Too bad I don't remember why I was playing with these, can they be removed?
685 if FINAL:
686 pass #cflags = cflags + ['/O1']
687 elif HYBRID :
688 pass #cflags = cflags + ['/Ox']
689 else:
690 pass # cflags = cflags + ['/Od', '/Z7']
691 # lflags = ['/DEBUG', ]
692
693
694
695#----------------------------------------------------------------------
696
697elif os.name == 'posix':
698 WXDIR = '..'
699 includes = ['include', 'src']
700 defines = [('SWIG_GLOBAL', None),
701 ('HAVE_CONFIG_H', None),
702 ('WXP_USE_THREAD', '1'),
703 ]
704 if UNDEF_NDEBUG:
705 defines.append( ('NDEBUG',) ) # using a 1-tuple makes it do an undef
706
707 Verify_WX_CONFIG()
708
709 libdirs = []
710 libs = []
711
712 # If you get unresolved symbol errors on Solaris and are using gcc, then
713 # uncomment this block to add the right flags to the link step and build
714 # again.
715 ## if os.uname()[0] == 'SunOS':
716 ## libs.append('gcc')
717 ## libdirs.append(commands.getoutput("gcc -print-search-dirs | grep '^install' | awk '{print $2}'")[:-1])
718
719 cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1]
720 cflags = cflags.split()
721 if debug:
722 cflags.append('-g')
723 cflags.append('-O0')
724 else:
725 cflags.append('-O3')
726
727 lflags = os.popen(WX_CONFIG + ' --libs', 'r').read()[:-1]
728 lflags = lflags.split()
729
730 WXBASENAME = os.popen(WX_CONFIG + ' --basename').read()[:-1]
731 WXRELEASE = os.popen(WX_CONFIG + ' --release').read()[:-1]
732 WXPREFIX = os.popen(WX_CONFIG + ' --prefix').read()[:-1]
733
734
735 if sys.platform[:6] == "darwin":
736 # Flags and such for a Darwin (Max OS X) build of Python
737 WXPLAT = '__WXMAC__'
738 GENDIR = 'mac'
739 libs = ['stdc++']
740 NO_SCRIPTS = 1
741
742
743 else:
744 # Set flags for other Unix type platforms
745 GENDIR = WXPORT
746
747 if WXPORT == 'gtk':
748 WXPLAT = '__WXGTK__'
749 portcfg = os.popen('gtk-config --cflags', 'r').read()[:-1]
750 elif WXPORT == 'gtk2':
751 WXPLAT = '__WXGTK__'
752 GENDIR = 'gtk' # no code differences so use the same generated sources
753 portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1]
754 BUILD_BASE = BUILD_BASE + '-' + WXPORT
755 elif WXPORT == 'x11':
756 WXPLAT = '__WXX11__'
757 portcfg = ''
758 BUILD_BASE = BUILD_BASE + '-' + WXPORT
759 else:
760 raise SystemExit, "Unknown WXPORT value: " + WXPORT
761
762 cflags += portcfg.split()
763
764 # Some distros (e.g. Mandrake) put libGLU in /usr/X11R6/lib, but
765 # wx-config doesn't output that for some reason. For now, just
766 # add it unconditionally but we should really check if the lib is
767 # really found there or wx-config should be fixed.
768 libdirs.append("/usr/X11R6/lib")
769
770
771 # Move the various -I, -D, etc. flags we got from the *config scripts
772 # into the distutils lists.
773 cflags = adjustCFLAGS(cflags, defines, includes)
774 lflags = adjustLFLAGS(lflags, libdirs, libs)
775
776
777#----------------------------------------------------------------------
778else:
779 raise 'Sorry, platform not supported...'
780
781
782#----------------------------------------------------------------------
783# post platform setup checks and tweaks, create the full version string
784#----------------------------------------------------------------------
785
786if UNICODE:
787 BUILD_BASE = BUILD_BASE + '.unicode'
cb56afc4 788 ##VER_FLAGS += 'u'
1128a89b 789
96acd0c1 790if os.path.exists('DAILY_BUILD'):
4b2826e5
RD
791
792 VER_FLAGS += '.' + open('DAILY_BUILD').read().strip()
1128a89b
RD
793
794VERSION = "%s.%s.%s.%s%s" % (VER_MAJOR, VER_MINOR, VER_RELEASE,
795 VER_SUBREL, VER_FLAGS)
796
797
798#----------------------------------------------------------------------
799# SWIG defaults
800#----------------------------------------------------------------------
801
802swig_cmd = SWIG
803swig_force = force
804swig_args = ['-c++',
805 '-Wall',
806 '-nodefault',
807
808 '-python',
809 '-keyword',
810 '-new_repr',
811 '-modern',
812
73a22369 813 '-I' + opj(WXPY_SRC, 'src'),
1128a89b
RD
814 '-D'+WXPLAT,
815 '-noruntime'
816 ]
817if UNICODE:
818 swig_args.append('-DwxUSE_UNICODE')
819
d07d2bc9
RD
820if FULL_DOCS:
821 swig_args.append('-D_DO_FULL_DOCS')
822
823
73a22369 824swig_deps = [ opj(WXPY_SRC, 'src/my_typemaps.i'),
4b960c0f 825 opj(WXPY_SRC, 'src/my_fragments.i'),
73a22369
RD
826 opj(WXPY_SRC, 'src/common.swg'),
827 opj(WXPY_SRC, 'src/pyrun.swg'),
4b960c0f 828 opj(WXPY_SRC, 'src/python.swg'),
1128a89b
RD
829 ]
830
831depends = [ #'include/wx/wxPython/wxPython.h',
832 #'include/wx/wxPython/wxPython_int.h',
833 #'src/pyclasses.h',
834 ]
835
836#----------------------------------------------------------------------
c278542b
RD
837
838####################################
839# BuildRenamers
840####################################
841
842import pprint
843import xml.sax
844
845try:
846 import libxml2
847 FOUND_LIBXML2 = True
848except ImportError:
849 FOUND_LIBXML2 = False
850
851#---------------------------------------------------------------------------
852
853
854renamerTemplateStart = """\
855// A bunch of %rename directives generated by BuildRenamers in config.py
856// in order to remove the wx prefix from all global scope names.
857
858#ifndef BUILDING_RENAMERS
859
860"""
861
862renamerTemplateEnd = """
863#endif
864"""
865
866wxPythonTemplateStart = """\
867## This file reverse renames symbols in the wx package to give
868## them their wx prefix again, for backwards compatibility.
869##
870## Generated by BuildRenamers in config.py
871
872# This silly stuff here is so the wxPython.wx module doesn't conflict
873# with the wx package. We need to import modules from the wx package
874# here, then we'll put the wxPython.wx entry back in sys.modules.
875import sys
876_wx = None
877if sys.modules.has_key('wxPython.wx'):
878 _wx = sys.modules['wxPython.wx']
879 del sys.modules['wxPython.wx']
880
881import wx.%s
882
883sys.modules['wxPython.wx'] = _wx
884del sys, _wx
885
886
887# Now assign all the reverse-renamed names:
888"""
889
890wxPythonTemplateEnd = """
891
892"""
893
894
895
896#---------------------------------------------------------------------------
897class BuildRenamers:
898 def run(self, destdir, modname, xmlfile, wxPythonDir="wxPython"):
899
900 assert FOUND_LIBXML2, "The libxml2 module is required to use the BuildRenamers functionality."
901
902 if not os.path.exists(wxPythonDir):
903 os.mkdir(wxPythonDir)
904
905 swigDest = os.path.join(destdir, "_"+modname+"_rename.i")
906 pyDest = os.path.join(wxPythonDir, modname + '.py')
907
908 swigDestTemp = tempfile.mktemp('.tmp')
909 swigFile = open(swigDestTemp, "w")
910 swigFile.write(renamerTemplateStart)
911
912 pyDestTemp = tempfile.mktemp('.tmp')
913 pyFile = open(pyDestTemp, "w")
914 pyFile.write(wxPythonTemplateStart % modname)
915
916 print "Parsing XML and building renamers..."
917 self.processXML(xmlfile, modname, swigFile, pyFile)
918
919 self.checkOtherNames(pyFile, modname,
920 os.path.join(destdir, '_'+modname+'_reverse.txt'))
921 pyFile.write(wxPythonTemplateEnd)
922 pyFile.close()
923
924 swigFile.write(renamerTemplateEnd)
925 swigFile.close()
926
927 # Compare the files just created with the existing one and
928 # blow away the old one if they are different.
929 for dest, temp in [(swigDest, swigDestTemp),
930 (pyDest, pyDestTemp)]:
931 if not os.path.exists(dest):
932 os.rename(temp, dest)
933 elif open(dest).read() != open(temp).read():
934 os.unlink(dest)
935 os.rename(temp, dest)
936 else:
937 print dest + " not changed."
938 os.unlink(temp)
939
940 #---------------------------------------------------------------------------
941
942
943 def GetAttr(self, node, name):
944 path = "./attributelist/attribute[@name='%s']/@value" % name
945 n = node.xpathEval2(path)
946 if len(n):
947 return n[0].content
948 else:
949 return None
950
951
952 def processXML(self, xmlfile, modname, swigFile, pyFile):
953
954 topnode = libxml2.parseFile(xmlfile).children
955
956 # remove any import nodes as we don't need to do renamers for symbols found therein
957 imports = topnode.xpathEval2("*/import")
958 for n in imports:
959 n.unlinkNode()
960 n.freeNode()
961
962 # do a depth first iteration over what's left
963 for node in topnode:
964 doRename = False
965 doPtr = False
966 addWX = False
967 revOnly = False
968
969
970 if node.name == "class":
971 lastClassName = name = self.GetAttr(node, "name")
972 lastClassSymName = sym_name = self.GetAttr(node, "sym_name")
973 doRename = True
974 doPtr = True
975 if sym_name != name:
976 name = sym_name
977 addWX = True
978
979 # renamed constructors
980 elif node.name == "constructor":
981 name = self.GetAttr(node, "name")
982 sym_name = self.GetAttr(node, "sym_name")
983 if sym_name != name:
984 name = sym_name
985 addWX = True
986 doRename = True
987
988 # only enumitems at the top level
989 elif node.name == "enumitem" and node.parent.parent.name == "include":
990 name = self.GetAttr(node, "name")
991 sym_name = self.GetAttr(node, "sym_name")
992 doRename = True
993
994
995 elif node.name in ["cdecl", "constant"]:
996 name = self.GetAttr(node, "name")
997 sym_name = self.GetAttr(node, "sym_name")
998 toplevel = node.parent.name == "include"
999
1000 # top-level functions
1001 if toplevel and self.GetAttr(node, "view") == "globalfunctionHandler":
1002 doRename = True
1003
1004 # top-level global vars
1005 elif toplevel and self.GetAttr(node, "feature_immutable") == "1":
1006 doRename = True
1007
1008 # static methods
1009 elif self.GetAttr(node, "view") == "staticmemberfunctionHandler":
1010 name = lastClassName + '_' + name
1011 sym_name = lastClassSymName + '_' + sym_name
1012 # only output the reverse renamer in this case
1013 doRename = revOnly = True
1014
1015 if doRename and name != sym_name:
1016 name = sym_name
1017 addWX = True
1018
1019
1020 if doRename and name:
1021 old = new = name
1022 if old.startswith('wx') and not old.startswith('wxEVT_'):
1023 # remove all wx prefixes except wxEVT_ and write a %rename directive for it
1024 new = old[2:]
1025 if not revOnly:
1026 swigFile.write("%%rename(%s) %35s;\n" % (new, old))
1027
1028 # Write assignments to import into the old wxPython namespace
1029 if addWX and not old.startswith('wx'):
1030 old = 'wx'+old
1031 pyFile.write("%s = wx.%s.%s\n" % (old, modname, new))
1032 if doPtr:
1033 pyFile.write("%sPtr = wx.%s.%sPtr\n" % (old, modname, new))
1034
1035
1036 #---------------------------------------------------------------------------
1037
1038 def checkOtherNames(self, pyFile, moduleName, filename):
1039 if os.path.exists(filename):
1040 prefixes = []
1041 for line in file(filename):
1042 if line.endswith('\n'):
1043 line = line[:-1]
1044 if line and not line.startswith('#'):
1045 if line.endswith('*'):
1046 prefixes.append(line[:-1])
1047 elif line.find('=') != -1:
1048 pyFile.write("%s\n" % line)
1049 else:
1050 wxname = 'wx' + line
1051 if line.startswith('wx') or line.startswith('WX') or line.startswith('EVT'):
1052 wxname = line
1053 pyFile.write("%s = wx.%s.%s\n" % (wxname, moduleName, line))
1054
1055 if prefixes:
1056 pyFile.write(
1057 "\n\nd = globals()\nfor k, v in wx.%s.__dict__.iteritems():"
1058 % moduleName)
1059 first = True
1060 for p in prefixes:
1061 if first:
1062 pyFile.write("\n if ")
1063 first = False
1064 else:
1065 pyFile.write("\n elif ")
1066 pyFile.write("k.startswith('%s'):\n d[k] = v" % p)
1067 pyFile.write("\ndel d, k, v\n\n")
1068
1069
1070#---------------------------------------------------------------------------