X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cfe766c352acceed1ac71921fee8cf3c2071ac03..d062e17fca1a1fc0b82b269da4a7ad271075ba2b:/wxPython/setup.py diff --git a/wxPython/setup.py b/wxPython/setup.py index 33ea793759..ce3be79c2c 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -13,7 +13,7 @@ from my_distutils import run_swig, contrib_copy_tree # flags and values that affect this script #---------------------------------------------------------------------- -VERSION = "2.3.1" +VERSION = "2.3.2b1" DESCRIPTION = "Cross platform GUI toolkit for Python" AUTHOR = "Robin Dunn" AUTHOR_EMAIL = "Robin Dunn " @@ -28,7 +28,7 @@ on. """ -BUILD_GLCANVAS = 0 #1 # If true, build the contrib/glcanvas extension module +BUILD_GLCANVAS = 1 # If true, build the contrib/glcanvas extension module BUILD_OGL = 1 # If true, build the contrib/ogl extension module BUILD_STC = 1 # If true, build the contrib/stc extension module BUILD_IEWIN = 0 # Internet Explorer wrapper (experimental) @@ -36,7 +36,7 @@ BUILD_XRC = 1 # XML based resource system CORE_ONLY = 0 # if true, don't build any of the above -GL_ONLY = 0 #1 #0 # Only used when making the -gl RPM. See the "b" script +GL_ONLY = 0 # Only used when making the -gl RPM. See the "b" script # for the ugly details USE_SWIG = 0 # Should we actually execute SWIG, or just use the @@ -64,7 +64,7 @@ HYBRID = 0 # If set and not debug or FINAL, then build a # wxWindows must have been built with /MD, not /MDd # (using FINAL=hybrid will do it.) -WXDLLVER = '23_1' # Version part of DLL name +WXDLLVER = '23_2' # Version part of DLL name #---------------------------------------------------------------------- @@ -120,7 +120,7 @@ sys.argv = filter(None, sys.argv) if CORE_ONLY: - BUILD_GLCANVAS = 0 #0 + BUILD_GLCANVAS = 0 BUILD_OGL = 0 BUILD_STC = 0 BUILD_XRC = 0 @@ -377,6 +377,20 @@ if not GL_ONLY: wxpExtensions.append(ext) + # Extension for the help module + swig_sources = run_swig(['help.i'], 'src', GENDIR, PKGDIR, + USE_SWIG, swig_force, swig_args, swig_deps) + ext = Extension('helpc', swig_sources, + include_dirs = includes, + define_macros = defines, + library_dirs = libdirs, + libraries = libs, + extra_compile_args = cflags, + extra_link_args = lflags, + ) + wxpExtensions.append(ext) + + #---------------------------------------------------------------------- # Define the GLCanvas extension module #---------------------------------------------------------------------- @@ -692,6 +706,7 @@ if __name__ == "__main__": packages = [PKGDIR, PKGDIR+'.lib', PKGDIR+'.lib.editor', + PKGDIR+'.lib.mixins' ], ext_package = PKGDIR,