Added wxHtmlFilter

Also some minor tweaks and additions


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17422 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-10-02 00:24:38 +00:00
parent 8d5e66bc14
commit 970a937c34
6 changed files with 180 additions and 19 deletions

View File

@@ -322,11 +322,11 @@ elif os.name == 'posix' and sys.platform[:6] == "darwin":
elif os.name == 'posix':
# Set flags for Unix type platforms
# Set flags for other Unix type platforms
WXDIR = '..' # assumes IN_CVS_TREE
WXPLAT = '__WXGTK__' # and assumes GTK...
GENDIR = 'gtk' # Need to allow for Motif eventually too
GENDIR = 'gtk' # Need to allow for X11 and/or Motif eventually too
includes = ['src']
defines = [('SWIG_GLOBAL', None),
@@ -357,7 +357,9 @@ else:
# Check if the version file needs updated
#----------------------------------------------------------------------
#if IN_CVS_TREE and newer('setup.py', 'src/__version__.py'):
# Always do it since the version string can change based on the UNICODE flag
##if IN_CVS_TREE and newer('setup.py', 'src/__version__.py'):
open('src/__version__.py', 'w').write("ver = '%s'\n" % VERSION)