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